程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php配合jquery實現增刪操作具體實例

php配合jquery實現增刪操作具體實例

編輯:PHP綜合

後台使用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>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved