国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

Ajax與mysql數(shù)據(jù)交互制作留言板功能

來(lái)源:懂視網(wǎng) 責(zé)編:小OO 時(shí)間:2020-11-27 19:47:48
文檔

Ajax與mysql數(shù)據(jù)交互制作留言板功能

最近自己做了一個(gè)小demo,實(shí)現(xiàn)了Ajax與MySQL的數(shù)據(jù)交互,js部分用的是jq,后臺(tái)用的是php,數(shù)據(jù)庫(kù)是mysql,過時(shí)間再來(lái)一個(gè)node+mongodb版的。關(guān)于mysql的使用和安裝,就不多講了,自行百度xampp,Apache服務(wù)器和mysql數(shù)據(jù)庫(kù)集成,非常好用。首先打開服務(wù)器和數(shù)據(jù)庫(kù),我這里先建立了一個(gè)“eleven”的數(shù)據(jù)庫(kù),下面建立了一個(gè)叫做microblog的表(請(qǐng)注意:我這里使用的是高版本的mysql,里面php鏈接數(shù)據(jù)庫(kù)的方法使用的都是mysqli_ 如果版本過低,請(qǐng)使用mysql_ 方法,自行修改代碼)。以下是代碼部分。html頁(yè)面和js部分。
推薦度:
導(dǎo)讀最近自己做了一個(gè)小demo,實(shí)現(xiàn)了Ajax與MySQL的數(shù)據(jù)交互,js部分用的是jq,后臺(tái)用的是php,數(shù)據(jù)庫(kù)是mysql,過時(shí)間再來(lái)一個(gè)node+mongodb版的。關(guān)于mysql的使用和安裝,就不多講了,自行百度xampp,Apache服務(wù)器和mysql數(shù)據(jù)庫(kù)集成,非常好用。首先打開服務(wù)器和數(shù)據(jù)庫(kù),我這里先建立了一個(gè)“eleven”的數(shù)據(jù)庫(kù),下面建立了一個(gè)叫做microblog的表(請(qǐng)注意:我這里使用的是高版本的mysql,里面php鏈接數(shù)據(jù)庫(kù)的方法使用的都是mysqli_ 如果版本過低,請(qǐng)使用mysql_ 方法,自行修改代碼)。以下是代碼部分。html頁(yè)面和js部分。

這篇文章主要為大家詳細(xì)介紹了Ajax與mysql數(shù)據(jù)交互,實(shí)現(xiàn)留言板功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

最近自己做了一個(gè)小demo,實(shí)現(xiàn)了Ajax與MySQL的數(shù)據(jù)交互,js部分用的是jq,后臺(tái)用的是php,數(shù)據(jù)庫(kù)是mysql,過時(shí)間再來(lái)一個(gè)node+mongodb版的。

關(guān)于mysql的使用和安裝,就不多講了,自行百度xampp,Apache服務(wù)器和mysql數(shù)據(jù)庫(kù)集成,非常好用。

首先打開服務(wù)器和數(shù)據(jù)庫(kù),我這里先建立了一個(gè)“eleven”的數(shù)據(jù)庫(kù),下面建立了一個(gè)叫做microblog的表(請(qǐng)注意:我這里使用的是高版本的mysql,里面php鏈接數(shù)據(jù)庫(kù)的方法使用的都是mysqli_ 如果版本過低,請(qǐng)使用mysql_ 方法,自行修改代碼)
以下是代碼部分:

html頁(yè)面和js部分:

<!DOCTYPE html> 
<html> 
 <head> 
 <meta charset="UTF-8"> 
 <title>微博留言板</title> 
 <style type="text/css"> 
 *{ 
 margin: 0; 
 padding: 0; 
 } 
 #box{ 
 width: 600px; 
 /*height: 500px;*/ 
 border: 2px solid rgb(85,85,85); 
 border-radius: 15px; 
 margin: 50px auto; 
 padding: 20px 10px 15px; 
 background-color: rgb(85,85,85); 
 } 
 #content{ 
 display: block; 
 resize: none; 
 width: 550px; 
 height: 200px; 
 margin: 0 auto; 
 border: 2px solid rgb(225,225,225); 
 border-radius: 10px; 
 text-align: center; 
 font-size: 30px; 
 background-color: rgb(225,225,225); 
 } 
 #content:focus{ 
 outline: none; 
 border: 2px solid rgb(225,225,225); 
 box-shadow: 0 0 15px rgb(225,225,225); 
 } 
 #btn{ 
 border: 2px solid rgb(255,204,0); 
 width: 80px; 
 height: 40px; 
 border-radius: 5px; 
 margin-top: 30px; 
 font-size: 17px; 
 cursor: pointer; 
 outline: none; 
 background-color: rgb(255,204,0); 
 } 
 
 .list{ 
 list-style: none; 
 background-color: rgb(249,249,249); 
 margin-top: 20px; 
 } 
 .list>li{ 
 padding: 20px 10px 10px; 
 border-bottom: 2px solid rgb(68,68,68); 
 font-size: 20px; 
 color: rgb(200,214,225); 
 position: relative; 
 word-break: break-word; 
 word-wrap: break-word; 
 background-color: rgb(85,85,85); 
 
 } 
 .list>li>.control{ 
 position: absolute; 
 bottom: 3px; 
 right: 5px; 
 font-size: 14px; 
 } 
 .list>li>p{ 
 margin-bottom: 25px; 
 } 
 .control span,.control em{ 
 display: inline-block; 
 margin-right: 15px; 
 } 
 .control em{ 
 color: darkblue; 
 cursor: pointer; 
 } 
 a{ 
 text-decoration: none; 
 color: darkred; 
 } 
 #page>a{ 
 display:inline-block; 
 width: 40px; 
 height: 30px; 
 margin-top: 10px; 
 text-align: center; 
 line-height: 30px; 
 font-size: 20px; 
 border-radius: 5px; 
 color: white; 
 background-color: rgb(51,21,70); 
 } 
 #head{ 
 color: rgb(200,214,225); 
 font-size: 30px; 
 height: 50px; 
 border-bottom: 2px solid rgb(68,68,68); 
 margin-bottom: 20px; 
 } 
 </style> 
 </head> 
 <body> 
 <p id="box"> 
 <p id="head"> 
 留言板 
 </p> 
 <p id="fill_in"> 
 <textarea id="content"></textarea> 
 <button id="btn">提交留言</button> 
 </p> 
 <!--留言列表--> 
 <p id="message_text"> 
 <ul class="list"> 
 </ul> 
 </p> 
 <!--分頁(yè)--> 
 <p id="page"> 
 <a href="javasript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >1</a> 
 <a href="javasript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >2</a> 
 </p> 
 </p> 
 </body> 
 <script src="Jq/jquery-3.1.1.min.js"> 
</html>

代碼顯示不完,下面是php部分代碼。
接01部分,jq的ajax請(qǐng)求:

這部分是php代碼部分:

<?php 
 header("Content-type:text/html;charset=utf8"); 
 date_default_timezone_set("PRC"); 
 //鏈接數(shù)據(jù)庫(kù) 
 $link = mysqli_connect("localhost", "root", "", "eleven"); 
 //設(shè)置數(shù)據(jù)庫(kù)編碼格式 
 mysqli_query($link, "set names utf8"); 
?>

注意:這部分我寫成了公共代碼,因?yàn)槲以趯W(xué)習(xí)做其他東西時(shí)調(diào)用了,所以下面的代碼會(huì)有

include_once "comment.php";

這一行是引用其他代碼

<?php 
 /* 
 * 開發(fā)文檔 
 * 1.用于提交的留言留言進(jìn)行存儲(chǔ) 
 * url:http://localhost/phpStudy/ajax03/message.php 
 * 提交方式:get 
 * 提交參數(shù)說明: 
 * content 必須 留言板內(nèi)容 
 * act 必須 借口標(biāo)識(shí) 
 * 返回參數(shù)說明 
 * 成功:{"error":"0","id":1,"time":"2016-11-30"} 
 * 失敗:{"error":1,"msg":"留言失敗,請(qǐng)重試"} 
 * 
 * 2.up 
 * id 必須 留言的id編號(hào) 
 * act 必須 接口標(biāo)識(shí) up 
 * 返回聲明 
 * 成功:{"error":"0"} 
 * 失敗:{"error":"1","msg":"點(diǎn)贊失敗"} 
 * 
 * 3.分頁(yè)(獲取頁(yè)碼的接口); 
 * act 必須 接口標(biāo)識(shí) count 
 * 返回參數(shù)說明: 
 * 成功:{"error":"0","countPage":"3"}; 
 * 失敗:{"error":"1","msg":"請(qǐng)求數(shù)據(jù)失敗,請(qǐng)重試!"} 
 * 
 * 4.分頁(yè)(點(diǎn)擊頁(yè)碼跳轉(zhuǎn)) 
 * url:http://localhost/phpStudy/ajax03/message.php 
 * 提交方式:get 
 * 提交參數(shù)說明: 
 * starPage 必須參數(shù) 頁(yè)碼索引值 
 * act 必須 接口標(biāo)識(shí) page 
 * 返回參數(shù)說明 
 * 成功:{"error":"0","data":[{},{},{},{},{}]} 
 * 失敗:{"error":"1","msg":"數(shù)據(jù)查詢失敗,請(qǐng)重試!"} 
 * 
 */ 
 include_once "comment.php"; 
 $act = $_GET["act"];//接口請(qǐng)求標(biāo)識(shí) 
 switch ($act) { 
 case 'add'://提交留言 
 $content = $_GET["content"]; 
 $time = time(); 
 $times = date("Y-m-d H:i:s",$time); 
 $query = "INSERT INTO microblog(id,content,time) VALUES(null,'{$content}','{$times}')"; 
 mysqli_query($link,$query); 
 $insertId = mysqli_insert_id($link); 
 if($insertId>0){ 
 $arr = ["error"=>0,"id"=>$insertId,"time"=>$times]; 
 echo json_encode($arr);//將數(shù)組轉(zhuǎn)化為json,方便前端使用 
 } 
 else{ 
 $arr = ["error"=>1,"msg"=>"留言失敗,請(qǐng)重試!"]; 
 echo json_encode($arr);//將數(shù)組轉(zhuǎn)化為json,方便前端使用 
 } 
 break; 
 
 case 'up': 
 $id = $_GET['id']; 
 $search = "SELECT up FROM microblog WHERE id = $id"; 
 $result = mysqli_query($link, $search); 
 $upNum = mysqli_fetch_row($result)[0]; 
 $upNum++; 
 $query = "UPDATE microblog SET up='{$upNum}' WHERE id = '{$id}'"; 
 mysqli_query($link,$query); 
 if(mysqli_affected_rows($link)){//更新數(shù)據(jù)成功 
 echo '{"error":"0"}'; 
 } 
 else{//更新失敗 
 echo '{"error":"1","msg":"點(diǎn)贊失敗!"}'; 
 } 
 break; 
 
 case 'down': 
 $id = $_GET['id']; 
 $search = "SELECT down FROM microblog WHERE id = $id"; 
 $result = mysqli_query($link, $search); 
 $downNum = mysqli_fetch_row($result)[0]; 
 $downNum++; 
 $query = "UPDATE microblog SET down='{$downNum}' WHERE id = '{$id}'"; 
 mysqli_query($link,$query); 
 if(mysqli_affected_rows($link)){//更新數(shù)據(jù)成功 
 echo '{"error":"0"}'; 
 } 
 else{//更新失敗 
 echo '{"error":"1","msg":"踩失敗!"}'; 
 } 
 break; 
 case 'remove': 
 $id = $_GET['id']; 
 $query ="DELETE FROM microblog WHERE id='{$id}'"; 
 mysqli_query($link,$query); 
 if(mysqli_affected_rows($link)>0){//刪除數(shù)據(jù)成功 
 echo '{"error":"0"}'; 
 } 
 else{ 
 echo '{"error":"1","msg":"刪除失敗!"}'; 
 } 
 break; 
 case 'count'://返回總頁(yè)碼 
 $query = "SELECT count(id) FROM microblog"; 
 $result = mysqli_query($link, $query); 
 $count = mysqli_fetch_row($result)[0];//以索引數(shù)組形式返回查詢結(jié)果 
 $countPage = ceil($count/5); 
 echo '{"error":"0","countPage":"'.$countPage.'"}'; 
 break; 
 case 'page'://點(diǎn)擊分頁(yè)或者是頁(yè)面第一次加載 
 $index = $_GET["num"]*5; 
 $search = "SELECT * FROM microblog ORDER BY id DESC LIMIT {$index},5";//倒敘查詢留言 
 $result = mysqli_query($link, $search); 
 $arr = [];//存查詢出來(lái)的數(shù)據(jù) 
 while($row = mysqli_fetch_assoc($result)){ 
 array_unshift($arr,$row); 
 } 
// print_r($arr); 
// {"error":"0","info":[{},{},{},{},{}]} 
 $resultArr = ["error"=>"0","info"=>$arr]; 
 echo json_encode($resultArr); 
 break; 
 
 } 
?>

上面是我整理給大家的,希望今后會(huì)對(duì)大家有幫助。

相關(guān)文章:

ajax響應(yīng)json字符串和json數(shù)組的實(shí)例(圖文教程)

Ajax同步和異步問題淺析及解決方法

Ajax解決多余刷新的兩種方法

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Ajax與mysql數(shù)據(jù)交互制作留言板功能

最近自己做了一個(gè)小demo,實(shí)現(xiàn)了Ajax與MySQL的數(shù)據(jù)交互,js部分用的是jq,后臺(tái)用的是php,數(shù)據(jù)庫(kù)是mysql,過時(shí)間再來(lái)一個(gè)node+mongodb版的。關(guān)于mysql的使用和安裝,就不多講了,自行百度xampp,Apache服務(wù)器和mysql數(shù)據(jù)庫(kù)集成,非常好用。首先打開服務(wù)器和數(shù)據(jù)庫(kù),我這里先建立了一個(gè)“eleven”的數(shù)據(jù)庫(kù),下面建立了一個(gè)叫做microblog的表(請(qǐng)注意:我這里使用的是高版本的mysql,里面php鏈接數(shù)據(jù)庫(kù)的方法使用的都是mysqli_ 如果版本過低,請(qǐng)使用mysql_ 方法,自行修改代碼)。以下是代碼部分。html頁(yè)面和js部分。
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 亚洲国产成人久久综合碰 | 国产成人一区二区三区 | 欧美性xxxxxx爱 | 一区二区三区成人 | 日本不卡一二三区 | 日本a级片免费观看 | 亚洲一区中文字幕在线 | 日韩影线| 在线综合亚洲欧美自拍 | 日韩a在线播放 | 国产亚洲欧美精品久久久 | 国产成人久久精品亚洲小说 | 日韩综合网 | 亚洲国产精品日韩在线 | 综合精品欧美日韩国产在线 | 在线观看免费精品国产 | 欧美成人a级在线视频 | 国产视频二区 | 国产精品香蕉 | 黄色a视频| 我被公睡做舒服爽中文字幕 | 欧美日韩精品在线播放 | 精品国产一区二区二三区在线观看 | 亚洲欧美日韩高清一区二区一 | 亚欧免费视频一区二区三区 | 国产亚洲一区二区三区 | 国产精品视频3p | 99一区二区三区 | 日韩在线视频线视频免费网站 | 国产精品久久久久久久久久久久 | 欧美午夜在线视频 | 国产123区在线视频观看 | 国产精品1234区| 亚洲国产精品日韩在线 | 就爱啪啪网 | 久久天堂 | 国产精品2020 | 在线欧美日韩精品一区二区 | 欧美日韩国产va另类试看 | 欧美日韩综合网 | 亚洲一区中文字幕在线 |