先配置數(shù)據(jù)庫------連接數(shù)據(jù)庫--------選擇數(shù)據(jù)庫--------填寫檢索表-------輸出檢索內(nèi)容
成都創(chuàng)新互聯(lián)是一家專注于成都做網(wǎng)站、成都網(wǎng)站建設、成都外貿(mào)網(wǎng)站建設與策劃設計,岳陽縣網(wǎng)站建設哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設十余年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:岳陽縣等地區(qū)。岳陽縣做網(wǎng)站價格咨詢:13518219792
第一種解決方法:
一、配置一下數(shù)據(jù)庫:
define("DB_HOST","localhost");//數(shù)據(jù)庫地址,一般為localhost
define("DB_USER","root");//數(shù)據(jù)庫用戶名
define("DB_PSW","");//數(shù)據(jù)庫密碼
define("DB_DB","databasename");//需要操作的數(shù)據(jù)庫
二、連接數(shù)據(jù)庫:
$conn = mysql_connect(DB_HOST,DB_USER,DB_PSW) or die
三、選擇數(shù)據(jù)庫:
mysql_select_db(DB_DB,$conn) or die
四、檢索表:(填寫tablename)
$result = mysql_query("select * from tablename") or die
五、輸出檢索的內(nèi)容:
while ($row = mysql_fetch_row($result)){foreach($row as $data){ ? ?echo $data.' ';} ? ?echo 'br。
調(diào)用第三方接口。
返回信息如:城市id和自己數(shù)據(jù)庫中城市id不一樣,城市名稱可以通過address對|符號分隔成數(shù)組取[2]獲得,然后模糊查詢自己數(shù)據(jù)庫的城市id。
首先你需要去申請一個map api的授權域名key,map api逆經(jīng)緯度接口為:
關鍵詞(如廣東深圳)key=申請的APIKEYsensor=falseoutput=xmloe=utf8
請求下來的數(shù)據(jù)時kml的數(shù)據(jù)格式,怎樣解析呢?我們可以使用xml的方式來進行解析,可能參考下面的php代碼,代碼來自于wp的一個插件第一個函數(shù)是xml2array(),這個函數(shù)的作用就是把xml轉換為數(shù)組便于操作參數(shù)$url為請求的xml地址,返回的是一個xml轉換成的數(shù)組。
function?getip(){?
if?(getenv("HTTP_CLIENT_IP")??strcasecmp(getenv("HTTP_CLIENT_IP"),?"unknown"))?
$ip?=?getenv("HTTP_CLIENT_IP");?
else?if?(getenv("HTTP_X_FORWARDED_FOR")??strcasecmp(getenv("HTTP_X_FORWARDED_FOR"),?"unknown"))?
$ip?=?getenv("HTTP_X_FORWARDED_FOR");?
else?if?(getenv("REMOTE_ADDR")??strcasecmp(getenv("REMOTE_ADDR"),?"unknown"))?
$ip?=?getenv("REMOTE_ADDR");?
else?if?(isset($_SERVER['REMOTE_ADDR'])??$_SERVER['REMOTE_ADDR']??strcasecmp($_SERVER['REMOTE_ADDR'],?"unknown"))?
$ip?=?$_SERVER['REMOTE_ADDR'];?
else?
$ip?=?"unknown";?
return($ip);?
}?
function?getIPLoc_sina($queryIP){?
$url?=?';ip='?.?$queryIP;?
$ch?=?curl_init($url);//初始化url地址?
curl_setopt($ch,?CURLOPT_ENCODING,?'utf8');//設置一個cURL傳輸選項?
curl_setopt($ch,?CURLOPT_TIMEOUT,?10);?
curl_setopt($ch,?CURLOPT_RETURNTRANSFER,?true);?//?獲取數(shù)據(jù)返回?
$location?=?curl_exec($ch);//執(zhí)行一個cURL會話?
$location?=?json_decode($location);//對?JSON?格式的字符串進行編碼?
curl_close($ch);//關閉一個cURL會話?
$loc?=?"";?
if?($location?===?FALSE)?return?"地址不正確";?
if?(empty($location-desc))?{?
$loc?=?$location-city;
}?else?{?$loc?=?$location-desc;}?
return?$loc;?
}?
$SA_IP=getip();
$city?=?getIPLoc_sina($SA_IP);
代碼如下:?View
Code
PHP
include("conn.php");//調(diào)用數(shù)據(jù)庫連接文件
echo
"table
width=572
height=56
border=0
cellspacing=1
";
//創(chuàng)建html表格
echo
"tr
bgcolor=#9999FF";
echo
"th
width=33
scope=colid/th";
echo
"th
width=100
scope=coluser_name/th
";
echo
"th
width=100
scope=coluser_pass/th
";
echo
"th
width=100
scope=colstaus/th";
echo
"th
width=100
scope=colinsert_time/th";
echo
"/tr";
$SQL
=
"select
*
from
user_info";
$query
=
mysql_query($SQL);
//SQL查詢語句
while
($row
=
mysql_fetch_array($query)){
//使用while循環(huán)mysql_fetch_array()并將數(shù)據(jù)返回數(shù)組
echo
"tr
onmouseout=this.style.backgroundColor=''
onMouseOver=this.style.backgroundColor='#99CC33'
bgcolor=#CCCCCC";
echo
"td$row[0]/td";
//輸出數(shù)組中數(shù)據(jù)
echo
"td$row[1]/td";
echo
"td$row[2]/td";
echo
"td$row[3]/td";
echo
"td$row[4]/td";
echo
"/tr";
}
echo
"/table";輸出記錄截圖
獲取ppq數(shù)據(jù)庫的所有表名的代碼:
?php
$server='localhost';
$user='root';
$pass='12345';
$dbname='ppq';
$conn=mysql_connect($server,$user,$pass);
if(!$conn)
die("數(shù)據(jù)庫系統(tǒng)連接失??!");
$result=mysql_list_tables($dbname);
if(!$result)
die("數(shù)據(jù)庫連接失敗!");
while($row=mysql_fetch_row($result))
{
echo
$row[0]."
";
}
mysql_free_result($result);
?
mysql_list_tables
(PHP
3,
PHP
4
,
PHP
5)
mysql_list_tables
--
列出
MySQL
數(shù)據(jù)庫中的表
說明
resource
mysql_list_tables
(
string
database
[,
resource
link_identifier])
mysql_list_tables()
接受一個數(shù)據(jù)庫名并返回和
mysql_query()
函數(shù)很相似的一個結果指針。用
mysql_fetch_array()或者用mysql_fetch_row()來獲得一個數(shù)組,數(shù)組的第0列就是數(shù)組名,當獲取不到時
mysql_fetch_array()或者用mysql_fetch_row()返回
FALSE。