pendesign
Member
دوستان میتونید مشکل این کدها رو پیدا کنید ؟ من وقتی این کدها رو روی سرور امتحان میکنم با Error مواجه میشم .
Input Form
Output form
Input Form
PHP:
<form method="POST" action="form3output.php">
FirstNumber
<input type="text" font size="10px" name"variable1">
<br><br>
SecondNumber
<input type="text" font size="10px" name"variable2">
<input typ
Output form
PHP:
<?PHP
$variable1=$_POST["variable1"];
$variable2=$_POST["variable2"];
$answer=$variable1+$variable2;
echo $variable1, " +" , $variable2, "=",$answer;
?>