利用$_post超级全局变量接收表单的数据,然后利用echo输出到页面。
下面是代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<html>
<head>
<title>利用超级全局变量 $_post 接收表单</title>
<meta http-equiv= "content-type" contnet= "text/html" charset= "utf-8" />
</head>
<body>
<form method= "post" action= "<?php echo $_server['php_self'];?>" />
name:<input type= "text" name= "fname" />
<input type= "submit" />
</form>
<?php
$name = $_post [ 'fname' ];
echo $name ;
?>
</body>
</html>
|
输出内容使用post方式提交数据,然后用$_post['fname'];接收数据赋值到$name的全局变量中,
然后用echo输出$name;变量得到最终的结果,就是表单内的内容。...................
以上这篇php利用超级全局变量$_post来接收表单数据的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。