1:index.php提交到:index_ok.php2:连接数据库文件:conn.php<?php $id=mysql_connect("localhost","root","root")ordie('连接失败:'.mysql_error());if(mysql_select_db("db_databas...
1:index.php 提交到:index_ok.php
2:连接数据库文件:conn.php
$id=mysql_connect("localhost","root","root") or die('连接失败:' . mysql_error());
if(mysql_select_db("db_database06",$id))
echo "";
else
echo ('数据库选择失败:' . mysql_error());
mysql_query("set names gb2312");
?>
3:index_ok.php程序
if($Submit==true){
$query=mysql_query("select * from tb_mysql where username='$username'");
if(mysql_num_rows($query)>0){ echo "该用户已经存在!!";
}else{
$querys="insert into tb_mysql (username,password,address)
values('$username','$password','$address')";
$result=mysql_query($querys);
if($result==true){
echo "管理员注册成功!!";
}else{ echo "用户注册失败!!"; }
}
}
?>
点“提交”后,index_ok.php页面空白,没有提示。数据数据提交不进去啊。
管理员注册 | ||
用户名: | ||
密码: | ||
地址: | ||
展开