程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL數據讀取,ExtJS和PHP Json

MySQL數據讀取,ExtJS和PHP Json

編輯:MySQL綜合教程

以下的文章主要講述的是ExtJS和PHP Json、MySQL數據讀取的實際應用,種種包括建立數據庫、注冊表,建立jsonreader.php和get.php與extjs文件json.js編寫,以下就是文章的主要內容描述。

ExtJS與PHP Json、MySQL數據讀取 1 建立數據庫、注冊表

  1. create database test;  
  2. create table test.login(  
  3. id int primary key,  
  4. name varchar(20) not null,  
  5. password varchar(20) not null  
  6. );  
  7. insert into test.login values  
  8. ('1','hong','1234'),  
  9. ('2','linxiang','1234'),  
  10. ('3','chen','99a9s'),  
  11. ('4','luxi','aabe2');  

ExtJS與PHP Json、MySQL數據讀取 2 建立jsonreader.php和get.php

jsonreader.php調用json.js

get.php讀取數據庫數據

  1. jsonreader.php => 
  2. <html> 
  3. <head> 
  4. <title>注冊</title> 
  5. <link rel="stylesheet" type="text/css" href="../ext/resources/css/ext-all.css" /> 
  6. <script type="text/javascript" src="../ext/adapter/ext/ext-base.js"></script> 
  7. <script type="text/javascript" src="../ext/ext-all.js"></script> 
  8. <script type="text/javascript" src="json.js"></script> 
  9. </head> 
  10. <body> 
  11. <div id='grid'></div> 
  12. </body> 
  13. </html> 
  14. get.php=> 
  15. <?php 
  16. $conn=MySQL_connect("localhost","root","123");  
  17. MySQL_select_db("test");  
  18. $sql="select id,name,password from login";  
  19. $result=MySQL_query($sql,$conn);  
  20. while($row=MySQL_fetch_array($result))  
  21. {  
  22. $arr4[]=$row;  
  23. }  
  24. echo json_encode($arr4);  
  25. ?> 

ExtJS與PHP Json、MySQL數據讀取 3 extjs文件json.js編寫

  1. json.js=> 
  2. Ext.onReady(function() {  
  3. store=new Ext.data.JsonStore({  
  4. url:'get.php',  
  5. data:[],  
  6. fields:[  
  7. {name:'id'},  
  8. {name:'name'},  
  9. {name:'password'}  
  10. ]  
  11. });  
  12. store.load();  
  13. new Ext.grid.GridPanel({  
  14. store:store,  
  15. mode:'remote',  

title:'簡單Grid表格示例',

  1. applyTo:'grid',  
  2. width:250,  
  3. height:150,  
  4. frame:true,  
  5. columns:[  
  6. {header:"id",width:50,dataIndex:'id',sortable:true},  
  7. {header:"姓名",width:80,dataIndex:'name',sortable:true},  
  8. {header:"年齡",width:80,dataIndex:'password',sortable:true}  
  9. ]  
  10. })  
  11. }); 

4 運行http://localhost/register/jsonreader.php

5 總結

php獲取MySQL的數據,轉換為數組,然後運用json_encode

  1. while($row= mysql _fetch_array($result))  
  2. {  
  3. $arr4[]=$row;  
  4. }  
  5. echo json_encode($arr4); 

以上的相關內容就是對ExtJS與PHP Json、MySQL數據讀取的介紹,望你能有所收獲。

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