标签:
定义
在 PHP 中,预定义的 $_POST 变量用于收集来自 method="post" 的表单中的值。
$_POST 变量
<form action="welcome.php" method="post"> Name:<input type="text" name="fname"> <br /> Age:<input type="text" name="age"> <br /> <input type="submit"> </form> <?php $a=$_POST[‘fname‘]; $b=$_POST[‘age‘]; echo $a."<br />"; echo $b."<br />"; ?>
标签:
原文地址:http://www.cnblogs.com/supermeimei/p/5165735.html