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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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>登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(2)、信息查询登录模块(mysql_stu.php):
___FCKpd___1登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制
(3)、查询信息显示模块(stu_info.php)
___FCKpd___2登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制登录后复制POST['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 "
恭喜您,注册成功!
输入以下内容登陆系统查询注册信息

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

如果您是一位经验丰富的 PHP 开发人员,您可能会感觉您已经在那里并且已经完成了。您已经开发了大量的应用程序,调试了数百万行代码,并调整了一堆脚本来实现操作

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写

JWT是一种基于JSON的开放标准,用于在各方之间安全地传输信息,主要用于身份验证和信息交换。1.JWT由Header、Payload和Signature三部分组成。2.JWT的工作原理包括生成JWT、验证JWT和解析Payload三个步骤。3.在PHP中使用JWT进行身份验证时,可以生成和验证JWT,并在高级用法中包含用户角色和权限信息。4.常见错误包括签名验证失败、令牌过期和Payload过大,调试技巧包括使用调试工具和日志记录。5.性能优化和最佳实践包括使用合适的签名算法、合理设置有效期、

本教程演示了如何使用PHP有效地处理XML文档。 XML(可扩展的标记语言)是一种用于人类可读性和机器解析的多功能文本标记语言。它通常用于数据存储

字符串是由字符组成的序列,包括字母、数字和符号。本教程将学习如何使用不同的方法在PHP中计算给定字符串中元音的数量。英语中的元音是a、e、i、o、u,它们可以是大写或小写。 什么是元音? 元音是代表特定语音的字母字符。英语中共有五个元音,包括大写和小写: a, e, i, o, u 示例 1 输入:字符串 = "Tutorialspoint" 输出:6 解释 字符串 "Tutorialspoint" 中的元音是 u、o、i、a、o、i。总共有 6 个元

静态绑定(static::)在PHP中实现晚期静态绑定(LSB),允许在静态上下文中引用调用类而非定义类。1)解析过程在运行时进行,2)在继承关系中向上查找调用类,3)可能带来性能开销。

PHP的魔法方法有哪些?PHP的魔法方法包括:1.\_\_construct,用于初始化对象;2.\_\_destruct,用于清理资源;3.\_\_call,处理不存在的方法调用;4.\_\_get,实现动态属性访问;5.\_\_set,实现动态属性设置。这些方法在特定情况下自动调用,提升代码的灵活性和效率。
