数据库mydb
表格info,nation,login
效果
无标题文档 登陆
无标题文档 主页面
select($sqldl,"CX","mydb");if($jieguo==""){ header("Location:0127denglu.php");}else{}*//*if($rowdl=$jieguo->fetch_row())//与后面的return $result对应{}else{ header("Location:0127denglu.php");}*//*if($dl->denglu($uid,$pwd)=="ok")//通过上面方法优化{}else{ header("Location:0127denglu.php");}*/ //查询代码 $strsel = ""; if(@$_POST["code"] != null) { $strsel = " where Code = '".$_POST["code"]."'";//where前面必须有空格 if(@$_POST["name"]!= null) { $strsel = " where Code='".$_POST["code"]."' and Name like '%".$_POST["name"]."%'"; } //else {$strsel = " where Code = '".$_POST["code"]."'";}可以省略 } else { if(@$_POST["name"]!= null) { $strsel = " where Name like '%".$_POST["name"]."%'"; } //else{$strsel="";}都为空执行最开始的$strsel } //1.连接数据可以$db = new mysqli("localhost","root","123","mydb");//2.判断是否连接成功if(mysqli_connect_error()){ echo "连接失败";}else{ //3.写sql语句 $sql = "select * from Info".$strsel; //4.执行sql语句 $result=$db->query($sql); //5.处理数据,遍历数据 echo " "; echo "
";}function NationName($db,$code){ //写sql语句 $sql="select * from nation where code='{ $code}'"; //4.执行sql语句 $result=$db->query($sql); //5.处理数据 if($row=$result->fetch_row()) { return $row[1]; } else { return ""; } }?>
代号 | 姓名 | 性别 | 民族 | 生日 | 操作 |
{ $row[0]} | { $row[1]} | { $sex} | { $nation} | { $birthday} | 删除 修改 |
无标题文档 host,$this->username,$this->password,$data); if(mysqli_connect_error()) { echo "连接失败"; exit; } else { $result=$db->query($sql); if($type=="CX") { //return $result; 用拼接字符串替换掉 $str=""; while($row=$result->fetch_row()) { for($i=0;$ihost,$this->username,$this->password,$this->database); if(mysqli_connect_error()) { echo "连接失败"; exit; } else { $sql="select * from login where UserName='{$uid}' and Password='{$pwd}'" ; $result=$db->query($sql); if($row=$result->fetch_row()) { return "ok"; } else { return "no"; } } }*/ }?>
无标题文档 添加页面
无标题文档 query($sql); if($result) { header("Location:0127lianxi.php"); } else { echo "删除失败"; } }?>
无标题文档 修改页面
query($sql); $row=$result->fetch_row();}?>
无标题文档 query($sql); //判断是否修改成功 if($result) { header("Location:0127lianxi.php"); } else { echo "修改失败!"; } }?>
无标题文档 query($sql); if($result) { header("Location:0127tianjia.php"); } else { echo "添加失败"; } }?>
0127tjchuli.php中的$sex写法要注意bit和varchar的变量写法