我的代碼如下,我想刪除mysql數據庫中的記錄,但在刪除瀏覽器之前,必須提示用戶是否應繼續刪除。我的問題是我的邏輯不管它刪除記錄,無論如何。任何幫助將不勝感激。PHP:從數據庫中刪除一些提示從javascript
if (isset($_POST['outofqcellchat'])){
?>
<script type ="text/javascript">
var question = confirm("Are you sure you want to unsubscribe\nThis will delete all your facebook information in QCell Facebook");
if(question){
<?php
$delusr = mysql_query("delete from `chat_config` where `phone` = '$phonenumb'");
$row = mysql_num_rows($delusr);
if($row>=1){
header("Location:http://apps.facebook.com/qcellchat");
}
?>
alert("Unsubscribed, You can register again any time you wish\nThank You");
}else {
alert("Thanks for choosing not to unregister \nQCell Expand your world");
}
</script>
<?php
}
?>
這就是我的代碼。請幫助
我中號只使用一個頁面而不是兩個 – 2010-10-11 10:56:53
@Sheriffo是的,這正是你的問題。 – 2010-10-11 10:57:35
所以我不能這樣做在一個頁面 – 2010-10-11 11:00:09