PHP编写学校网站上新生注册登陆程序的实例分享_PHP
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>
(2)、信息查询登录模块(mysql_stu.php):
新生登陆系统 数据库创建失败:".mysql_error()); $result=mysql_select_db(mis_stu) or die('选择mis_stu数据库失败:'.mysql_error()); $createtable="create table if not exists stu_reg (stu_name varchar(30) not null,stu_sex char(2),stu_age int,stu_class varchar(30),stu_id varchar(18),stu_tele varchar(20),stu_email varchar(30))"; $result=mysql_query($createtable) or die('
数据表创建失败:'.mysql_error()); //选择数据库 mysql_select_db(mis_stu); if(!empty(就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
基本信息 就弄了三个页面:(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
新生登陆系统 数据库创建失败:".mysql_error()); $result=mysql_select_db(mis_stu) or die('选择mis_stu数据库失败:'.mysql_error()); $createtable="create table if not exists stu_reg (stu_name varchar(30) not null,stu_sex char(2),stu_age int,stu_class varchar(30),stu_id varchar(18),stu_tele varchar(20),stu_email varchar(30))"; $result=mysql_query($createtable) or die('
数据表创建失败:'.mysql_error()); //选择数据库 mysql_select_db(mis_stu); if(!empty(就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_name'])) { $name=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_name']; $sex=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_sex']; $age=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_age']; $class=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_class']; $id=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_id']; $tele=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_tele']; $email=
就弄了三个页面:
(1)、新生信息注册模块(register.php):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>班级注册表</title> </head> <body background="image/bg3.jpg"> <center><img src="/static/imghw/default1.png" data-src="image/school_1.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <marquee behavior="alternate" bgcolor="#FF0000"><b>河南理工大学真诚欢迎2012级新同学到校学习</b></marquee> </center> <p><center><font color="red" size="6"><b><blink>新生注册系统</blink></b></font></center></p> <form action="mysql_stu.php" method="post" name="reg_stu"> <table align="center" cellspacing="0" bordercolor="#FFFFFF" width="60%" bordercolorlight="#FFFFFF" border="1" cellpadding="3"> <tr bgcolor="#CCCCCC"> <td width="100%" align="center" valign="bottom" height="19" colspan="2"> <font face="隶书" size="4" color="#000000">请仔细填写以下内容</font></td> </tr> <tr> <td width="30%" align="right" height="19" >姓名:</td> <td width="70%"><input type="text" name="reg_name" size="10" maxlength="18" ></td> </tr> <tr> <td width="30%" align="right" height="19">性别:</td> <td width="70%"><input type="radio" name="reg_sex" value="男" checked >男<input type="radio" name="sex" value="女">女</td> </tr> <tr> <td width="30%" align="right" height="19">年龄:</td> <td width="70%"><input type="text" name="reg_age" size="5" maxlength="15"></td> </tr> <tr> <td width="30%" align="right" height="19">班级:</td> <td width="70%"><input type="text" name="reg_class" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">身份证号:</td> <td width="70%"><input type="text" name="reg_id" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">联系电话:</td> <td width="70%"><input type="text" name="reg_tele" size="20"></td> </tr> <tr> <td width="30%" align="right" height="19">电子邮件:</td> <td width="70%"><input type="text" name="reg_email" size="20"></td> </tr> <tr> <td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td> </tr> </table> </form> <marquee behavior="scroll"> <center><img src="/static/imghw/default1.png" data-src="image/school2.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/lake.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/flower.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/autumn.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/bridge.jpg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/beauty.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party1.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party2.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party3.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > <img src="/static/imghw/default1.png" data-src="image/party4.jpeg" class="lazy" style="max-width:90%" style="max-width:90%" alt="PHP编写学校网站上新生注册登陆程序的实例分享_PHP" > </center></marquee> </body> </html>Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopieren
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2Nach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenNach dem Login kopierenPOST['reg_email']; //定义插入数据到stu_reg表中的SQL字符串 mysql_query("set names gb2312"); $SQL="insert into stu_reg(stu_name,stu_sex,stu_age,stu_class,stu_id,stu_tele,stu_email) values ('$name','$sex','$age','$class','$id','$tele','$email')"; mysql_query($SQL); mysql_query("COMMIT"); echo "
恭喜您,注册成功!
输入以下内容登陆系统查询注册信息

Heiße KI -Werkzeuge

Undresser.AI Undress
KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover
Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool
Ausziehbilder kostenlos

Clothoff.io
KI-Kleiderentferner

Video Face Swap
Tauschen Sie Gesichter in jedem Video mühelos mit unserem völlig kostenlosen KI-Gesichtstausch-Tool aus!

Heißer Artikel

Heiße Werkzeuge

Notepad++7.3.1
Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version
Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1
Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6
Visuelle Webentwicklungstools

SublimeText3 Mac-Version
Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Heiße Themen



PHP 8.4 bringt mehrere neue Funktionen, Sicherheitsverbesserungen und Leistungsverbesserungen mit einer beträchtlichen Menge an veralteten und entfernten Funktionen. In dieser Anleitung wird erklärt, wie Sie PHP 8.4 installieren oder auf PHP 8.4 auf Ubuntu, Debian oder deren Derivaten aktualisieren. Obwohl es möglich ist, PHP aus dem Quellcode zu kompilieren, ist die Installation aus einem APT-Repository wie unten erläutert oft schneller und sicherer, da diese Repositorys in Zukunft die neuesten Fehlerbehebungen und Sicherheitsupdates bereitstellen.

Wenn Sie ein erfahrener PHP-Entwickler sind, haben Sie möglicherweise das Gefühl, dass Sie dort waren und dies bereits getan haben. Sie haben eine beträchtliche Anzahl von Anwendungen entwickelt, Millionen von Codezeilen debuggt und eine Reihe von Skripten optimiert, um op zu erreichen

Visual Studio Code, auch bekannt als VS Code, ist ein kostenloser Quellcode-Editor – oder eine integrierte Entwicklungsumgebung (IDE) –, die für alle gängigen Betriebssysteme verfügbar ist. Mit einer großen Sammlung von Erweiterungen für viele Programmiersprachen kann VS Code c

JWT ist ein offener Standard, der auf JSON basiert und zur sicheren Übertragung von Informationen zwischen Parteien verwendet wird, hauptsächlich für die Identitätsauthentifizierung und den Informationsaustausch. 1. JWT besteht aus drei Teilen: Header, Nutzlast und Signatur. 2. Das Arbeitsprinzip von JWT enthält drei Schritte: Generierung von JWT, Überprüfung von JWT und Parsingnayload. 3. Bei Verwendung von JWT zur Authentifizierung in PHP kann JWT generiert und überprüft werden, und die Funktionen und Berechtigungsinformationen der Benutzer können in die erweiterte Verwendung aufgenommen werden. 4. Häufige Fehler sind Signaturüberprüfungsfehler, Token -Ablauf und übergroße Nutzlast. Zu Debugging -Fähigkeiten gehört die Verwendung von Debugging -Tools und Protokollierung. 5. Leistungsoptimierung und Best Practices umfassen die Verwendung geeigneter Signaturalgorithmen, das Einstellen von Gültigkeitsperioden angemessen.

Dieses Tutorial zeigt, wie XML -Dokumente mit PHP effizient verarbeitet werden. XML (Extensible Markup-Sprache) ist eine vielseitige textbasierte Markup-Sprache, die sowohl für die Lesbarkeit des Menschen als auch für die Analyse von Maschinen entwickelt wurde. Es wird üblicherweise für die Datenspeicherung ein verwendet und wird häufig verwendet

Eine Zeichenfolge ist eine Folge von Zeichen, einschließlich Buchstaben, Zahlen und Symbolen. In diesem Tutorial wird lernen, wie Sie die Anzahl der Vokale in einer bestimmten Zeichenfolge in PHP unter Verwendung verschiedener Methoden berechnen. Die Vokale auf Englisch sind a, e, i, o, u und sie können Großbuchstaben oder Kleinbuchstaben sein. Was ist ein Vokal? Vokale sind alphabetische Zeichen, die eine spezifische Aussprache darstellen. Es gibt fünf Vokale in Englisch, einschließlich Großbuchstaben und Kleinbuchstaben: a, e, ich, o, u Beispiel 1 Eingabe: String = "TutorialPoint" Ausgabe: 6 erklären Die Vokale in der String "TutorialPoint" sind u, o, i, a, o, ich. Insgesamt gibt es 6 Yuan

Statische Bindung (statisch: :) implementiert die späte statische Bindung (LSB) in PHP, sodass das Aufrufen von Klassen in statischen Kontexten anstatt Klassen zu definieren. 1) Der Analyseprozess wird zur Laufzeit durchgeführt.

Was sind die magischen Methoden von PHP? Zu den magischen Methoden von PHP gehören: 1. \ _ \ _ Konstrukt, verwendet, um Objekte zu initialisieren; 2. \ _ \ _ Destruct, verwendet zur Reinigung von Ressourcen; 3. \ _ \ _ Call, behandeln Sie nicht existierende Methodenaufrufe; 4. \ _ \ _ GET, Implementieren Sie den dynamischen Attributzugriff; 5. \ _ \ _ Setzen Sie dynamische Attributeinstellungen. Diese Methoden werden in bestimmten Situationen automatisch aufgerufen, wodurch die Code -Flexibilität und -Effizienz verbessert werden.
