PHP学习笔记-表单处理

<form></form>为一个表单对象,表单中有2个文本域,分别绑定了2个变量name和age。

写一个index.html文件,代码如下:

<html>
<body>

<form action="welcome.php" method="post">
Name: <input type="text" name="name" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>

</body>
</html>

welcome.php文件代码:

<html>
<body>

Welcome <?php echo $_POST["name"]; ?>.<br />
You are <?php echo $_POST["age"]; ?> years old.

</body>
</html>

点击提交(submit)按钮,文本域中的值传入name,age变量,显示在welcome.php页面上。

另外,也可以使用GET方法,index.html文件做下列修改:

<form action="welcome.php" method="get">
Name: <input type="text" name="name" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>

在method属性中修改成get 。

welcome.php文件代码:

Welcome <?php echo $_GET["name"]; ?>.<br />
You are <?php echo $_GET["age"]; ?> years old!

使用GET方法不安全,输入的数据会显示在地址栏上:

http://www.hellophp.com/welcome.php?name=laotou&age=20

但是,正因为地址中包含输入数据,因此可以被收藏夹收藏。


版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(PHP学习笔记-表单处理)