Heim  >  Artikel  >  Backend-Entwicklung  >  PHP-Formulardatenerfassungscode

PHP-Formulardatenerfassungscode

高洛峰
高洛峰Original
2017-01-11 16:22:091923Durchsuche

<html> 
<head> 
<title>Form</title> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
</head> 

<body> 
<form action="post.php" method="get" name="form1"> 
<table width="271" border="0" align="center" cellpadding="0" cellspacing="0"> 
<tr> 
<td width="85"><div align="right">姓名:</div></td> 
<td width="186"><input name="username" type="text" id="username"></td> 
</tr> 
<tr> 
<td><div align="right">密码:</div></td> 
<td><input name="password" type="password" id="password"></td> 
</tr> 
<tr> 
<td><div align="right">密码确认:</div></td> 
<td><input name="password2" type="password" id="password2"></td> 
</tr> 
<tr> 
<td><div align="right">性别:</div></td> 
<td><select name="sex" id="sex"> 
<option value="0" selected>男</option> 
<option value="1">女</option> 
</select></td> 
</tr> 
<tr> 
<td><div align="right">生日:</div></td> 
<td><input name="birthday" type="text" id="birthday"></td> 
</tr> 
<tr> 
<td><div align="right">E-mail:</div></td> 
<td><input name="email" type="text" id="email"></td> 
</tr> 
<tr> 
<td><div align="right">职业:</div></td> 
<td><input name="job" type="text" id="job"></td> 
</tr> 
</table> 
<p align="center"> 
<input type="submit" value="Submit"> 
<input type="reset" value="Reset"> 
</p> 
</form> 
</body> 
</html>
<?php 
//本程序用于接收来自HTML页面的表单数据,并输出每个字段 
echo "用户的输入如下所示:<BR>"; 
echo "姓名:".$_GET[&#39;username&#39;]."<BR>"; 
echo "密码:".$_GET[&#39;password&#39;]."<BR>"; 
echo "密码确认:".$_GET[&#39;password2&#39;]."<BR>"; 
echo "性别:".$_GET[&#39;sex&#39;]."<BR>"; 
echo "生日:".$_GET[&#39;birthday&#39;]."<BR>"; 
echo "E-mail:".$_GET[&#39;email&#39;]."<BR>"; 
echo "职业:".$_GET[&#39;job&#39;]."<BR>"; 
?>
<?php 
//本程序用于接收来自HTML页面的表单数据,并输出每个字段 
echo "用户的输入如下所示:<BR>"; 
echo "姓名:".$_POST[&#39;username&#39;]."<BR>"; 
echo "密码:".$_POST[&#39;password&#39;]."<BR>"; 
echo "密码确认:".$_POST[&#39;password2&#39;]."<BR>"; 
echo "性别:".$_POST[&#39;sex&#39;]."<BR>"; 
echo "生日:".$_POST[&#39;birthday&#39;]."<BR>"; 
echo "E-mail:".$_POST[&#39;email&#39;]."<BR>"; 
echo "职业:".$_POST[&#39;job&#39;]."<BR>"; 
?>

Weitere Artikel zum PHP-Formulardatenerfassungscode finden Sie auf der chinesischen PHP-Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn