首页 > 作文

PHP与Web页面的交互示例详解一

更新时间:2023-04-08 21:35:46 阅读: 评论:0

前言

这篇笔记记录的是web表单的相关操作,web表单主要用来在网页中发送数据到服务器。比如在日常开发中,提交注册时需要提交表单,表单从客户端传送到服务器,经过服务器处理后,再将用户所需要的信息传递回客户端,进而实现php与web表单的交互。

表单

使用<form>元素,并在其中插入相关的表单元素,即可创建一个表单。表单结构:<form name="form_name" method="method" action="url" enctype="value" target="target_win">…   //省略插入的表单元素</form >

form标记的属性如下表:

form标记的属性说明name表单名称method设置表单的提交方式,get或者post方法action纸箱处理该表单页面的urlenctype设置表单内容的编码方式target设置返回信息的显示方式
表单(form)由表单元素组成。常用的表单元素有以下几种标记:输入域标记<input>、选择域标记<lect>和<option>、文字域标记<textarea>等。

输入域标记<input>

输入域标记<input>是表单中最常用的标记之一。常用的文本框、按钮、单选按钮、复选框等构成了一个完整的表单。
语法格式如下:

<form><input name="file_name" type="type_name"></form>

参数name是指输入域的名称,参数type是指输入域的类型。在<input type=””>标记中一共提供了10种类型的输入区域,用户所选择使用的类型由type属性决定。

下面举几个type属性例子:

1、text

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">文本框:</td> <td height="25" align="left"><input name="ur" type="text" value="bill" id="ur" size="20" maxlength="100"></td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行效果:

name为文本框的名称,value是文本框的默认值,size为文本框的宽度,maxlength为文本框的最大输入字符数,可以通过id获取文本框的值。

2、password

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><m培训计划实施方案eta http-equiv="c山西轻工职业技术学院ontent-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">密码域:</td> <td height="25" align="left"> <input name="pwd" type="password" value="1234567" id="password" size="20" maxlength="100"> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

密码域,用户在该文本框中输入的字符将被替换为*显示,以起到保密作用。

3、file

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "htt签名档吧p://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">文件域:</td> <td height="25" align="left"> <input name="file" type="file" enctype="multipart/form-data" id="upfile" size="20" maxlength="200"> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

文件域,当文件上传时,可以用来打开一个模式窗口来选择文件。然后将文件通过表单上传到服务器,上传文件时需要指明表单的属性enctype=”multipart/form-data”才可以实现上传功能。

4、image

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">图像域:</td> <td height="25" align="left"> <input name="image" type="imag写云的诗句e" src="btn__details_prai_lected.png" id="img" width="40" height="40" border="0"> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行效果:

图像域是指可以用在提交按钮位置上的图片,这副图片具有按钮的功能

5、radio

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">单选按钮:</td> <td height="25" align="left">  <input name="x" type="radio" value="1" checked>男  <input name="x" type="radio" value="0" >女 </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

单选按钮,用于设置一组选择项,用户只能选择一项。checked属性用来设置该单选按钮默认被选中。

6、checkbox

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">复选框:</td> <td height="25" align="left">  <input name="checkbox" type="checkbox" value="1" checked>苹果  <input name="checkbox" type="checkbox" value="1" checked>小米  <input name="checkbox" type="checkbox" value="1" >三星 </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

复选框,允许用户选择多个选择项。checked属性用来设置该复选框默认被选中。

7、submit

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">提交按钮:</td> <td height="25" align="left">  <input name="submit" type="submit" value="提交"> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

将表单的内容提交到服务器端

8、ret

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-tran情殇 信乐团sitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">重置按钮:</td> <td height="25" align="left">  <input name="ret" type="ret" value="重置"> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

清除与重置表单内容,用于清除表单中所有文本框的内容,并使选择菜单项恢复到初始值。

9、button

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">普通按钮:</td> <td height="25" align="left">  <input name="button" type="button" value="注册"> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

按钮可以激发提交表单的动作,可以在用户需要修改表单时,将表单恢复到初始的状态,还可以依照程序的需要发挥其他作用。

10、hidden

<input type="hidden" name="信息">

隐藏域,用于在表单中以隐含方式提交变量值。隐藏域在页面中对于用户是不可见的,添加隐藏域的目的在于通过隐藏的方式收集或者发送信息。

选择域标记<lect>和<option>

通过选择域标记<lect>和<option>可以建立一个列表或者菜单。菜单的使用是为了节省空间,正常状态下只能看到一个选项,单击右侧的下三角按钮打开菜单后才能看到全部的选项。列表可以显示一定数量的选项,如果超出了这个数量,会自动出现滚动条,浏览者可以通过拖动滚动条来查看各选项。

语法格式如下:

<lect name="name" size="value" multiple><option value="value" lected>选项1</option><option value="value">选项2</option><option value="value">选项3</option>…</lect>

参数name表示选择域的名称;参数size表示列表的行数;参数value表示菜单选项值;参数multiple表示以菜单方式显示数据,省略则以列表方式显示数据。

1、列表方式

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">喜欢哪种编程语言:</td> <td height="25" align="center" >  <lect name="name" id="code">   <option value="1" lected>java语言</option>   <option value="2">c语言</option>   <option value="3">js语言</option>   <option value="4">php语言</option>  </lect> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

下拉列表框,通过选择域标记<lect>和<option>建立一个列表,列表可以显示一定数量的选项,如果超出了这个数量,会自动出现滚动条,浏览者可以通过拖动滚动条来查看各选项。lected属性用来设置该菜单时默认被选中。

2、菜单方式

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">喜欢哪种编程语言:</td> <td height="25" align="center" >  <lect name="name" id="code" multiple>   <option value="1" lected>java语言</option>   <option value="2">c语言</option>   <option value="3">js语言</option>   <option value="4">php语言</option>  </lect> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

> multiple属性用于菜单列表```<lect>```标记中,指定该选项的用户可以使用shift和ctrl键进行多选

文字域标记<textarea>

文字域标记<textarea>用来制作多行的文字域,可以在其中输入更多的文本。

语法格式如下:

<textarea name="name" rows=value cols=value value="value" warp="value"> …文本内容</textarea>

参数name表示文字域的名称;rows表示文字域的行数;cols表示文字域的列数(这里的rows和cols以字符为单位);value表示文字域的默认值,warp用于设定显示和送出时的换行方式,值为off表示不自动换行,值为hard表示自动硬回车换行,换行标记一同被发送到服务器,输出时也会换行,值为soft表示自动软回车换行,换行标记不会被发送到服务器,输出时仍然为一列。

例如:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; chart=gb2312" /><title>php语言基础</title></head><body><form action="index.php" method="post" name="form1" enctype="multipart/form-data"> <tr bgcolor="#ffcc33"> <td width="103" height="25" align="right">请写下你的留言:</td> <td height="25" align="center" >  <textarea rows="5" cols="20" name="remark" id="remark">留言...</textarea> </td> </tr></form><?phpheader("content-type:text/html; chart=gb2312");?></body></html>

运行结果:

到此这篇关于php与web页面的交互示例详解一的文章就介绍到这了,更多相关php与web页面的交互内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-08 21:35:40,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/aea0cd6650ea3268680778a83bdf4bd7.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP与Web页面的交互示例详解一.doc

本文 PDF 下载地址:PHP与Web页面的交互示例详解一.pdf

标签:表单   标记   语言   按钮
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图