表单提交如何查看提交的信息
求一个表单如何提交,怎样查看提交的信息?代码如下<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body background="">
<p>
<font color="#000099"size="20">
<i><b><u>表单</i></u></b>
</font>
<hr width = "100%" size = "5" noshade >
<form>
<pre>
<p>
姓名:<input type="text" name="name" value="请输入姓名" size="25" maxlength="30">
密码:<input type="password" name="passed" size="15" maxlength="20" >
<br >
联系电话:<input type="text" name="phone" size="25" maxlength="30" ><br><br>
<b>性别</b>
<input type="radio" name="sex" value="male" checked="checked" >男
<input type="radio" name="sex" value="female" >女
<br>
<b>喜欢的颜色</b>
<input type="checkbox" name="blue" value="blue" checked="checked" >蓝色<br>
<input type="checkbox" name="green" value="green" >绿色<br>
<input type="checkbox" name="white" value="white" >白色<br>
<input type="checkbox" name="red" value="red" />红色<br>
<b>民族</b>
<select name="nationality">
<option value="汉族">汉族
<option value="">
<option value="">
<option value="">
<option value="">
<option value="">
</select>
<br>
<br>工作简历:<br>
<textarea name="work" rows="2" cols="20" wrap="virtual">
请输入你的工作简历
</textarea>
<br>
<b>附件:</b><input type="file" name="attachment" size="30" />
<p align="center">
<input type="image" src="" alt="提交" width="32" height="32" />
<input type="reset" value="重置" />
</pre>
</form>
</body>
</html>