i wanna get two inputs and calculate them. how can i do?
my code is
<input type="text" name="a" />
<input type="text" name="b" />
<input type="submit" name="Submit" value="calculate" />
<?php
if ($a > $b)
echo "a is greater than b";
else echo "a is greater than b"
?>
please help me