php配合jquery实现增删操作具体实例

 这篇文章主要介绍了php配合jquery实现增删操作具体实例,有需要的朋友可以参考一下

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

时间: 2024-12-27 04:24:28

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)关闭非永

同域jQuery(跨)iframe操作DOM(实例讲解)_jquery

frame目前还是比较流行的,许多地方都通过它来实现特殊的情况.比如说传统的上传.select在ie6下.代理.跨域等等.今天呢,简要的记述一下跨iframe的相关操作,主要是用jQuery操作DOM结构方面. 复制代码 代码如下: <iframe src="a.php" id="aa"></iframe> <iframe src="b.php" id="bb"></iframe>

jQuery元素属性操作实例(设置、获取及删除元素属性)_jquery

本文实例讲述了jQuery元素属性操作的方法.分享给大家供大家参考,具体如下: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script src="js/jquery-1.10.1.min.js" type="tex

jquery读写cookie操作实例分析_jquery

本文实例分析了jquery读写cookie操作.分享给大家供大家参考,具体如下: jquery cookie需要脚本文件如下: jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { options = options || {}; if (value === null) { value = ''; options = $.extend({}, options); options.ex

jQuery中DOM操作实例分析_jquery

本文实例讲述了jQuery中DOM操作的方法.分享给大家供大家参考.具体分析如下: 这里主要设计的dom操作包括:dom对象的创建(JS方式和jquery方式).属性的修改.样式的修改.动态绑定事件 代码如下: 复制代码 代码如下: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type="text/javascript" src="jquery-1.3.

jQuery链式操作实例分析_jquery

本文实例讲述了jQuery链式操作.分享给大家供大家参考,具体如下: 从过去的实例中,我们知道jQuery语句可以链接在一起,这不仅可以缩短代码长度,而且很多时候可以实现特殊的效果. <script type="text/javascript"> $(function() { $("div").addClass("css1").filter(function(index) { return index == 1 || $(this).

jQuery进行组件开发完整实例_jquery

本文实例讲述了jQuery进行组件开发的方法,分享给大家供大家参考,具体如下: 前面的<JavaScript组件开发>分析了JavaScript进行组件开发的技巧,这里分析使用jQuery进行组件开发的方法. 使用jQuery进行组件开发和使用纯JavaScript脚本(不使用框架)原理基本类似,特别是公共方法的组织是一样的. 不同点是,jQuery使用了插件机制,通过$()直接进行操作对象(DOM元素)绑定,然后对DOM元素或HTML代码进行绑定事件等的操作. 另一个不同点则是把jQuery

jQuery查找节点方法完整实例_jquery

本文实例讲述了jQuery查找节点方法.分享给大家供大家参考,具体如下: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script type="text/javascript" src="js/jquery-1.10

jQuery实现的自定义滚动条实例详解_jquery

本文实例讲述了jQuery实现的自定义滚动条.分享给大家供大家参考,具体如下: 可以自由的给滚动条定义背景,上下按钮,当然不仅仅是颜色,连图片当背景也可以.支持鼠标滚轮,点击滚动条滚轴定位,上下按钮久按加速,兼容 ie,firefox,chrome. 调用方法: $("#a").jscroll(); demo: <!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset=