①過濾數(shù)據(jù) | √ | ②數(shù)據(jù)唯一性檢測(手機(jī)號(hào)唯一) | √ | ③php生成當(dāng)前寫入時(shí)間(時(shí)間戳格式) | √ | ④如何返回結(jié)果給前端(返回字符串或者是json數(shù)據(jù)) | √ | ⑤手機(jī)號(hào)格式驗(yàn)證(正則匹配驗(yàn)證) | √ |
⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳
2.鏈接數(shù)據(jù)庫
1)mysql_connect('localhost','數(shù)據(jù)庫用戶名','數(shù)據(jù)庫密碼'),連接數(shù)據(jù)庫
2)選擇數(shù)據(jù)庫 mysql_select_db('數(shù)據(jù)庫名稱',數(shù)據(jù)庫鏈接上一步)
3)數(shù)據(jù)庫時(shí)區(qū)設(shè)置 測試環(huán)境php5.2.6 ,在頭部添加 ini_set('date.timezone','Asia/Shanghai');
測試可行;網(wǎng)上說的 date_default_timezone_set('PRC');
并沒有效果;不知道哪里有問題;
參考資料:
date_default_timezone_set()設(shè)置時(shí)區(qū)
?php ini_set('date.timezone','Asia/Shanghai'); $con = mysql_connect("localhost","admin","qishangxiangyunnetnic20160407"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("qishang_form", $con); $time = date('Y-m-d H:i:s',time()); $sql="INSERT INTO netnich5 (name, tel_number,posttime) VALUES ('$_POST[name]','$_POST[tel]','$time')"; if (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); } echo "1 record added"; ?>
1.問題:Notice: Use of undefined constant callback - assumed 'callback'
解決:
在每個(gè)文件頭上加 error_reporting(0);
sql語句清理表數(shù)據(jù)
1.全部清理表中數(shù)據(jù),不刪除表 TRUNCATE TABLE 表名
跨域jsonp解決方案
最簡單jsonp實(shí)例
附:jsonp jquery接收和原生JS接收
客戶端返回實(shí)例:
后臺(tái)接收回調(diào)函數(shù)callback ,函數(shù)的參數(shù) 就是json的數(shù)據(jù)
callback( {username: "", is_login: false} );
$(document).ready(function(){ $.ajax({ /*url:'http://172.16.69.220:8100/get_user/',*/ url:'http://192.168.1.72:8002/get_user/', type:'get', dataType:'jsonp', jsonp:'callback', processData: false, jsonpCallback:'flightHandler', success:function (json) { alert("數(shù)據(jù)成功返回") console.log(json.is_login); console.log(json); } }); });
更多關(guān)于PHP相關(guān)內(nèi)容可查看本站專題:《PHP+ajax技巧與應(yīng)用小結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
標(biāo)簽:白城 郴州 綿陽 瀘州 黃石 雞西 迪慶 貴陽
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php + ajax 實(shí)現(xiàn)的寫入數(shù)據(jù)庫操作簡單示例》,本文關(guān)鍵詞 php,ajax,實(shí)現(xiàn),的,寫入,數(shù)據(jù)庫,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。