本節講解“新書管理”頁面選擇點擊操作功能裡面的“修改”,“刪除”功能的實現
先說“刪除”功能。
主要的想法是:
取得要刪除的書籍的id
#透過SQL語句刪除此書的id來刪除此id在資料庫中的全部記錄。
<?php $SQL ="DELETE FROM yx_books where id='".$_GET['id']."'"; $arry=mysqli_query($link,$sql); if($arry){ echo "<script> alert('删除成功');location='list.php';</script>"; } else echo "删除失败"; ?>
然後是「修改」功能。
取得需要修改書籍的id
透過SQL語句查詢資料庫中此條id的所有資訊.再透過SQL語句修改此條id的資訊
<?php $SQL = "SELECT * FROM yx_books where id='".$_GET['id']."'"; $arr=mysqli_query($link,$sql); $rows=mysqli_fetch_row($arr); ?> <?php if($_POST['action']=="modify"){ $sqlstr = "UPDATE yx_books SET name = '".$_POST['name']."', price = '".$_POST['price']."', uploadtime = '".$_POST['uptime']."', type = '".$_POST['type']."', total = '".$_POST['total']."' where id='".$_GET['id']."'"; $arry=mysqli_query($link,$sqlstr); if ($arry){ echo "<script> alert('修改成功');location='list.php';</script>"; } else{ echo "<script>alert('修改失败');history.go(-1);</script>"; } } ?>
給<from>表單一個onSubmit點選事件:
<form id="myform" name="myform" method="post" action="" onSubmit="return myform_Validator(this)">
透過onSubmit點選事件用< ;javascript>判斷修改書籍資訊時不能讓每項修改的資訊為空。
<script type="text/javascript"> function myform_Validator(theForm) { if (theForm.name.value == "") { alert("请输入书名。"); theForm.name.focus(); return (false); } if (theForm.price.value == "") { alert("请输入书名价格。"); theForm.price.focus(); return (false); } if (theForm.type.value == "") { alert("请输入书名所属类别。"); theForm.type.focus(); return (false); } return (true); } </script>