我有这两个文件
一个.php
<?
echo "
<form action = 'B.php' method = 'post'>
Age: <input type = 'text' name = 'age'>
<input type = 'submit' name = 'send' value = 'send'>
</form>
";
?>
B.php
<?
$age = $_REQUEST ['age'];
if (isset($_POST['send'])){
echo "Are you sure you wanna send this age?";
echo "
<form action = 'B.php' method = 'post'>
<input type = 'submit' name = 'age2' value = 'YES'>
";
if (isset($_POST['age2']) && !isset($_POST['send'])){
echo "Your final age is".$age; //It doesn't display!!! :(
}
echo "</form>";
}
?>
如果我删除第二个 if isset,将显示 $age。
如果您意识到,在第二个问题中,我有两个条件,第一个条件是必须单击“是”按钮,第二个条件是不能单击发送按钮。
我已经尝试了很多,但我没有得到这个:(
PS我想在同一页面中显示它。没有其他页面。如果这不可能,那么我将在其他页面中制作。