?php
目前成都創(chuàng)新互聯(lián)已為成百上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計(jì)、望奎網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
if(isset($_GET['id'])!empty($_GET['id'])){
$id=intval($_GET['id']);
$sql="delete from jxkc_a1 where id = $id";
if(mysql_query($sql)){
echo "script type='text/javascript'alert('操作成功')/script";
}else{
echo "script type='text/javascript'alert('操作失敗')/script";
}
}
?
?php
$arr = mysql_query("select * from jxkc_a1 where username='$username' order by id desc" );
while($result = mysql_fetch_array($arr))
{?
tr
tdspan class="STYLE9" ?php echo $result["lesson"];? /td
tdspan class="STYLE9" ?php echo $result["plantime"];? /td
tdspan class="STYLE9" ?php echo $result["student"];? /td
tdspan class="STYLE9" ?php echo $result["classtime"];? /td
tdspan class="STYLE9" ?php echo $result["type"];? /td
tda href=(這里假設(shè)你的地址是./list.php)"./list.php?id=?php echo $result["id"] ?" onclick=".......js"刪除/a/td
/tr?php } ?
php數(shù)據(jù)庫(kù)刪除表的時(shí)候怎么點(diǎn)都可以刪除成功是查詢執(zhí)行成功并影響到未返回任何行導(dǎo)致。根據(jù)查詢相關(guān)信息顯示對(duì)于其它類型的SQL語(yǔ)句,mysql,query()在執(zhí)行成功時(shí)返回TRUE,出錯(cuò)時(shí)返回FALSE。非FALSE的返回值意味著查詢是合法的并能夠被服務(wù)器執(zhí)行。導(dǎo)致php數(shù)據(jù)庫(kù)刪除表的時(shí)候任意點(diǎn)擊都可以刪除成功。
從你的代碼沒(méi)看出什么問(wèn)題,建議你在js端調(diào)試一下,
比如:
function?todelete($id)?{
var?url?=?'__URL__/deleteManager';
data?=?{};
data['id']?=?$id;
$.post(url,?data,?function(result){
alert(result);//?看看服務(wù)端返回什么
});
}