添加成功,頁(yè)面不跳轉(zhuǎn),空白頁(yè)面;刪除失敗,提取不到ID
我這里的location.href="list.php";頁(yè)面不會(huì)跳轉(zhuǎn),但是數(shù)據(jù)成功插入了,這要怎么解決? 還有在刪除的時(shí)候提取不到數(shù)據(jù)庫(kù)里面的ID,提示刪除錯(cuò)誤
我這里的location.href="list.php";頁(yè)面不會(huì)跳轉(zhuǎn),但是數(shù)據(jù)成功插入了,這要怎么解決? 還有在刪除的時(shí)候提取不到數(shù)據(jù)庫(kù)里面的ID,提示刪除錯(cuò)誤
2017-05-10
舉報(bào)
2017-05-11
<?php
$link = mysqli_connect("localhost", "root", "root") or die("連接失敗" . mysqli_error());
mysqli_select_db($link, 'ceshi');
//mysqli_character_set_name('utf8');
@$name=$_POST['pname'];
//$name=mysqli_escape_string($name);
@$sex=$_POST['psex'];
$act=$_GET['act'];
@$id=$_POST['pno'];
switch ($act){
? ? case ?'addUser' :
? ? $sql="insert ?into person(pname,psex) values('{$name}' ,'{$sex}');";
? ? $res=mysqli_query($link, $sql);
? ? if ($res){?
? ? ? ? echo "<script type='text/javascript'>
? ? ? ? ? ? location.href='list.php'; ? ? ??
? ? ? ? ? ? </script>";
? ? ? ? ? ? ? ?exit;
? ? }else{
? ? ? ? echo"<script type='text/javascript'>
? ? ? ? ? ? ? ? ? ? alert('添加失敗');
? ? ? ? ? ? ? ? ? ? location.href='addUser.php';
? ? ? ? ? ? ? ? </script>";
? ? ? ? exit;
? ? }
? ? break;
? ??case ?'delete':
? ? ?echo '刪除記錄'.$id;
? ? ?$sql="delete from person where pno=".$id;
? ? ?$res=mysqli_query($link, $sql);
? ? ?if ($res){
? ? ? ?$mes='刪除成功';
? ? ?}else{
? ? ? ? $mes='刪除失敗'; ? ? ? ?
? ? ?}
? ? ?$url='list.php';
? ? ?echo "<script type='text/javascript'>
? ? ?alert('{$mes}');
? ? ?location.href='{$url}';
? ? ?</script>";
? ? ?exit;
? ? ?break;
? ? ?case 'editUser':
? ? ? ? echo "";
????????break;
}
2017-05-11
看看你代碼