lastpage.php中的代码
<form action="welcome.php" method="post">
Name:<input type="text" name='fname'>
<br/>
Age:<input type="text" name='age'>
<br/>
<input type="submit">
</form>
welcome.php中的代码
<?ph
$a=$_POST['fname'];
$b=$_POST['age'];
echo $a."<br />";
echo $b."<br />";
?>
运行会提示Notice: Undefined index: fname in C:\Users\wang-pc\PhpstormProjects\untitled4\welcome.php on line 6
Notice: Undefined index: age in C:\Users\wang-pc\PhpstormProjects\untitled4\welcome.php on line 8
我在PHP Storm和DW CS6试过都有问题,interpreter用wamp和AppServ都不能解决
这个问题困扰好几天了,求大家帮忙
<form action="welcome.php" method="post">
Name:<input type="text" name='fname'>
<br/>
Age:<input type="text" name='age'>
<br/>
<input type="submit">
</form>
welcome.php中的代码
<?ph
$a=$_POST['fname'];
$b=$_POST['age'];
echo $a."<br />";
echo $b."<br />";
?>
运行会提示Notice: Undefined index: fname in C:\Users\wang-pc\PhpstormProjects\untitled4\welcome.php on line 6
Notice: Undefined index: age in C:\Users\wang-pc\PhpstormProjects\untitled4\welcome.php on line 8
我在PHP Storm和DW CS6试过都有问题,interpreter用wamp和AppServ都不能解决
这个问题困扰好几天了,求大家帮忙


