Добавьте два значения текстового поля и отобразите сумму в третьем текстовом поле, используя метод извлечения.
Введите два числа и отобразите выходные данные в третьем текстовом поле при нажатии на кнопку отправки. Имейте в виду: первое и второе текстовые значения не сбрасываются. Текстовое поле результата не должно быть доступно для записи.
PHP Скрипт
<?php extract($_POST); //do addition and store the result in $res if(isset($add)) { $res=$fnum+$snum; } ?>
HTML-форма
<html> <head> <title>Display the result in 3rd text box</title> </head> <body> <form method="post"> <table align="center" border="1"> <Tr> <th>Your Result</th> <td><input type="text" readonly="readonly" value="<?php echo @$res;?>"/></td> </tr> <tr> <th>Enter first number</th> <td><input type="text" name="fnum" value="<?php echo @$fnum;?>"/></td> </tr> <tr> <th>Enter second number</th> <td><input type="text" name="snum" value="<?php echo @$snum;?>"/></td> </tr> <tr> <td align="center" colspan="2"> <input type="submit" value="+" name="add"/> </tr> </table> </form> </body> </html>