首页 > 开发 > PHP > 正文

结合PHP使用HTML表单(1)

2024-05-04 22:53:42
字体:
来源:转载
供稿:网友
,欢迎访问网页设计爱好者web开发。能较容易地对用户通过 html 表单提交的信息进行操作的能力一直是php的优势之一。事实上,php 版本4.1添加了几个访问该信息的新方法并有效地除去了以前版本中最常用的一个方法。本文研究了使用 html 表单上提交的信息的不同方法,并同时使用了 php 较早的版本和较新的版本。本文首先从研究单个值开始,然后构建可以一般性地访问任何可用的表单值的页面。

注:本文假定您对运行 php 版本 3.0 或更高版本的 web 服务器具有访问权。您需要对 php 本身以及创建 html 表单有基本了解。

html 表单



在阅读本文的过程中,您将看到不同类型的 html 表单元素如何提供 php 能够访问的信息。针对本示例,我使用了一个简单的信息表单,它由两个文本域、两个复选框和一个允许多项的选择框组成:


 

清单 1. html 表单

<html>

<head><title>tour information</title></head>

<body>

<h2>mission information</h2>

<form action="formaction.php">

<table width="100%">

<tr><td>ship name:</td><td><input type="text" name="ship" /></td></tr>

<tr><td>trip date:</td><td><input type="text" name="tripdate" /></td></tr>

<tr><td colspan="2">mission goals:</td></tr>

<tr>

<td><input type="checkbox" name="exploration" value="yes" />

exploration</td>

<td><input type="checkbox" name="contact" value="yes" />

contact</td>

</tr>

<tr>

<td valign="top">crew species: </td>

<td>

<select name="crew" multiple="multiple">

<option value="xebrax">xebrax</option>

<option value="snertal">snertal</option>

<option value="gosny">gosny</option>

</select>

</td>

</tr>

<tr><td colspan="2" align="center"><input type="submit" /></td></tr>

</table>

</form>

</body>

</html>




在没有指定方法的情况下,该表单使用缺省方法 get,浏览器用它将表单值附加到 url,如下所示:

http://www.vanguardreport.com/formaction.php?

ship=midnight+runner&tripdate=12-15-2433&exploration=yes&crew=snertal&crew=gosny

图 1 显示表单本身。




图 1. html 表单



老办法:访问全局变量



清单 2 中显示的代码将表单值作为全局变量处理:


 

清单 2. 作为全局变量的表单值

<?php

echo "ship = ".$ship;

echo "<br />";

echo "tripdate = ".$tripdate;

echo "<br />";

echo "exploration = ".$exploration;

echo "<br />";

echo "contact = ".$contact;

?>




生成的 web 页面显示提交的值:


 

ship = midnight runner

tripdate = 12-15-2433

exploration = yes

contact =




(正如您稍后将看到的那样,contact 没有值,因为没有选中那个框)。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表