後台使用php,前台引用jquery,實現增刪操作,代碼如下:
復制代碼 代碼如下:
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<?php
header("Content-type: text/html; charset=utf-8");
//mysql_connect 建立連接,mysql_close($link)關閉非永久連接,mysql_pconnect 建立永久連接
//mysql_error返回mysql函數錯誤信息,mysql_errno返回mysql函數錯誤號碼
//mysql_set_charset 設置用戶端字符集,mysql_select_db 選擇連接數據庫
//mysql_query 執行查詢,mysql_num_rows返回查詢記錄條數
//mysql_affected_rows返回受影響的記錄條數,mysql_free_result 釋放結果集內存
//mysql_fetch_row 返回列舉陣列記錄,mysql_fetch_assoc 返回關聯陣列記錄
//mysql_fetch_array 返回關聯陣列或數字陣列記錄,mysql_fetch_object 返回物件形式記錄
//mysql_fetch_result 取得結果集資料
//%s 字符串,%c 一個ASCII字符,%d 一個整數,%u 一個符號數,%x 一個十六進制數
mysql_query("set charaset set utf-8");
$message=@$_POST["message"];
$shanchu=@$_POST["shanchu"];
$top_title="PHP基礎練習";
$con=mysql_connect("localhost","root","");
//連接數據庫
mysql_set_charset('utf-8',$con);
mysql_select_db("dbl",$con);
//定義數據庫命令查詢
$sql="select `message` ,`time`,`id` from message order by id desc limit 0,30";
//執行數據庫查詢
$rs=mysql_query($sql,$con);
$time=date('Y-m-d h:i:s',time());
//獲取條數
$num_rows=mysql_num_rows($rs);//mysql_num_rows返回查詢記錄條數
if (isset($_POST["submits"])) {
if(!$_POST["message"]==null){
$queryinsert=sprintf("insert into message (message,time) values('%s','%s')",
$_POST['message'],$time);
mysql_query($queryinsert,$con);
}
if($_POST["message"]==null){
echo "";
}
header("Location:http://localhost/table.php");
}
if(isset($_GET["ClearTd"]) && intval($_GET['ClearTd'])){
$querydelete="delete from message where id=".$_GET['ClearTd'];
mysql_query($querydelete,$con);
header("Location:http://localhost/table.php");
}
?>
<form method="post" action="table.php">
<textarea name="message" id="message"></textarea>
<input type="submit" name="submits">
</form>
<ul>
<?php while($row=mysql_fetch_array($rs,MYSQL_ASSOC))
{
?>
<li>
<?php foreach($row as $tiao){
echo $tiao;
}?>
<a name="ClearTd" href="?ClearTd=<?php echo $row['id'];?>">刪除</a>
</li>
<?php } ?>
</ul>