php**
<?php
header("content-type: text/html; charset=gb2312");
$servername = "localhost"; //資料庫伺服器位址
$uid = "mssqla"; //資料庫使用者名稱
$pwd = "123456"; //資料庫密碼
$connectioninfo = array("uid"=>$uid, "pwd"=>$pwd, "database"=>"mysql");
$conn = sqlsrv_connect( $servername, $connectioninfo);
if($conn == false)else
$name = $_post['name'];
$pass = $_post['pass'];
$security = $_post['security'];
print($name);
sqlsrv_query($conn, "insert into android (name,pass,security) values('$name','$pass','$security')");
//定義好乙個陣列。php中array相當於乙個資料字典
$data =array();
//定義乙個類,用到存放從資料庫中取出的資料.
class user
$query = sqlsrv_query($conn, "select * from myuser");
while($row = sqlsrv_fetch_array($query))
$json = json_encode($data); //把資料轉換為json資料
print("");
sqlsrv_close($conn);
?>
android**
public static final int islogin =1;
message message = new message();
message.what = islogin;
handler.sendmessage(message); // 將message物件傳送出去,採用非同步處理機制
//非同步處理的**
@suppresslint("handlerleak")
private handler handler = new handler() }};
注意:重新開啟乙個執行緒處理httpclient請求,不要在ui執行緒處理,注意編碼方式,如果出現亂碼,資料庫插入操作失敗,將返回null值。
通過PHP對MySQL進行增刪改查
建立資料庫 建立與mysql的連線 link mysqli connect localhost 3306 root root shuju if link 查詢資料 mysql命令在php中以字元的形式存在 sql select from tt 可以通過php的方法向mysql傳送命令 mysql的命...
php 通過API介面連線12306餘票查詢
header content type text html charset utf 8 設定編碼 echo 獲取api傳過來的資訊 querydate 時間 from station 始發站編號 to station 到達站編號 url 獲取內容 內容是json格式 data getcontent ...
android 通過gdbserver 除錯c
有些事真的很煩鎖,但是又不得不做 環境 ubuntu12.04 ndkr9 android sdk android 4.2.2 盒子,已root 過程 1 c 編寫程式 2 ndk build ndk debug 1 強制生成除錯資訊 3 adb push gdbserver system bin ...