I am trying to create a php page that allows a user to enter numbers then the php will run using the numbers that the user entered.
<?php
$x =
$y =
$z =
?>
<?php echo "\n"; echo $x + $y + $z; echo "\n";?>
<?php echo $x * $y * $z; echo "\n\n";?>
<?php echo $x / $y * $z; echo "\n\n";?>
<?php echo $x - $y - $z; echo "\n";?>
<?php echo -$x; echo "\n";?>
<?php echo $y - $x; echo "\n";?>
this is the php part the html is
: : :this is calling the php page i have but i dont know how to assign the x,y,z to be the numbers the user put it the submit box. ANy help?