ホームページ >バックエンド開発 >PHPチュートリアル >php +ajax +sqlでデータ対話を実現
ul
>< ;script
> $(
function(){ $.ajax({ type: "post",//転送メソッドurl: " phpToAJAX.php",//データインターフェースdataType: "json",//受信形式成功: function(msg)//受信が成功したら、次のコマンドを実行します{ var li=""; for(var i =0;i<strong>6685505315c98b65f51a3b044625d2a8</strong>
<strong>3.php服务端提供给前端ajax数据接口,新建文件phptoAJAX。php</strong>
<pre class="n"><strong><?php</strong> <strong>require_once</strong>(<strong>"conn.php"</strong>);//导入公用文件 $query=mysql_query(<strong>"SElECT * FROM txt"</strong>) <strong>or die</strong>(<strong>"</strong><strong>错误提示:</strong><strong>"</strong>.mysql_error()); $jsonArray=<strong>array</strong>();//新建数据用于接收数据库每行对应的数据组 <strong>while</strong>($rows=mysql_fetch_array($query)) {
//处理数据库里面的自动对应的内容 $rows[<strong>'content'</strong>]=mb_substr(strip_tags(htmlspecialchars_decode($rows[<strong>'content'</strong>])),0,100,<strong>"utf-8"</strong>); //把数据库的内容添加到新建数组中
array_push($jsonArray,$rows);//注意这里是$rows } <strong>echo </strong>json_encode($jsonArray);//转换成json传递给前端if ($rows=mysql_fetch_array($query)){ echo "88f0184d2acf10920130f1763361ee16".htmlspecialchars_decode($rows['content '])."16b28748ea4df4d9c2150843fecfba68";} -------------------完了--------------- ----------