<?php
switch($_GET['calc']){
default:
echo "
<a href='?calc=plus'>Додати</a><br>
<a href='?calc=minus'>Вілняти</a><br>
<a href='?calc=mnoz'>Помножити</a><br>
<a href='?calc=dil'>Поділити</a><br>
<a href='?calc=prost'>Знайти корінь простого рівняння</a><br><hr>
<a href='math.php'>Синуси косинуси і так далі...</a>
";
break;
case'plus';
echo "
<form action='?calc=plusform' method='post' >
Введи перше число:<br>
<input type ='text' name='a'> <br>
Введи друге число:<br>
<input type ='text' name='b'> <br>
<input type ='submit' value='Виконати додавання'></form>";
break;
case'plusform';
$a=$_POST['a'];
$b=$_POST['b'];
$c=$a + $b;
echo "Ви додали $a до $b і отримали <font color='red'>$c</font>";
break;
case'minus';
echo "
<form action='?calc=minusform' method='post' >
Введи перше число:<br>
<input type ='text' name='a'> <br>
Введи друге число:<br>
<input type ='text' name='b'> <br>
<input type ='submit' value='Виконати Віднімання'></form>";
break;
case'minusform';
$a=$_POST['a'];
$b=$_POST['b'];
$c=$a - $b;
echo "Ви відняли від $a число $b і отримали <font color='red'>$c</font>";
break;
case'mnoz';
echo "
<form action='?calc=mnozform' method='post' >
Введи перше число:<br>
<input type ='text' name='a'> <br>
Введи друге число:<br>
<input type ='text' name='b'> <br>
<input type ='submit' value='Виконати Множення'></form>";
break;
case'mnozform';
$a=$_POST['a'];
$b=$_POST['b'];
$c=$a * $b;
echo "Ви помножили $a на $b і отримали <font color='red'>$c</font>";
break;
case'dil';
echo "
<form action='?calc=dilform' method='post' >
Введи перше число:<br>
<input type ='text' name='a'> <br>
Введи друге число:<br>
<input type ='text' name='b'> <br>
<input type ='submit' value='Виконати Ділення'></form>";
break;
case'dilform';
$a=$_POST['a'];
$b=$_POST['b'];
$c=$a / $b;
echo "Ви поділили $a на $b і отримали <font color='red'>$c</font>";
break;
case'prost';
echo "
<form action='?calc=prostm' method='post' >
<b>X-A=B</b><br>
X-<input type ='text' name='a'> =<input type ='text' name='b'>
<input type ='submit' value='Знайти Корінь'></form>";
/*
Рівняння типу Х+М=С далі
*/
echo "
<form action='?calc=prostp' method='post' >
<b>X+A=B</b><br>
X+<input type ='text' name='a'> =<input type ='text' name='b'>
<input type ='submit' value='Знайти Корінь'></form>";
echo "
<form action='?calc=prostmnoz' method='post' >
<b>X*A=B</b><br>
X*<input type ='text' name='a'> =<input type ='text' name='b'>
<input type ='submit' value='Знайти Корінь'></form>";
echo "
<form action='?calc=prostmdil' method='post' >
<b>X/A=B</b><br>
X/<input type ='text' name='a'> =<input type ='text' name='b'>
<input type ='submit' value='Знайти Корінь'></form>";
break;