mysql
創(chuàng)新互聯(lián)建站是一家專注于成都做網(wǎng)站、網(wǎng)站制作與策劃設(shè)計,臨海網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:臨海等地區(qū)。臨海做網(wǎng)站價格咨詢:18980820575
有一個默認的數(shù)據(jù)庫,叫做information_schema
連上這個庫,執(zhí)行下面的語句(你自己那可能的改下下面的sql)
//table_schema
是你的數(shù)據(jù)庫名字
table_name是表名
select
*
from
tables
where
table_schema
=
'storage'
and
table_name
like
'product%'
你看看庫中這個表結(jié)構(gòu)就明白了,呵呵
試編寫代碼如下:
?php
//從數(shù)據(jù)庫根據(jù)?id?獲取顏色
function?getColor($db,?$id)
{
if?($result?=?$db-query("SELECT?*?FROM?color?where?id='"?.?$id?.?"'"))
{
$row?=?$result-fetch_assoc();
return?$row['color'];
}
return?'#000000';
}
$mysqli?=?new?mysqli("localhost",?"test",?"test",?"room");
if?($mysqli-connect_error)?{
printf("數(shù)據(jù)庫連接錯誤:?%s\n",?mysqli_connect_error());
exit();
}
?
table?border="1"?cellspacing="0"
tr
td?bgcolor="?php?echo?getColor($mysqli,'1')?"1/td
/tr
tr
td?bgcolor="?php?echo?getColor($mysqli,'2')?"2/td
/tr
tr
td?bgcolor="?php?echo?getColor($mysqli,'3')?"3/td
/tr
/table
?php
$mysqli-close();
?
沒這么干過 mysql_list_tables 獲取 所有表信息 返回指針 mysql_tablename 獲取表名
myslq_num_rows函數(shù)來判斷結(jié)果指針中的表的數(shù)目
?php
mysql_connect("localhost", "mysql_user", "mysql_password");
$result = mysql_list_tables("mydb");
for ($i = 0; $i mysql_num_rows($result); $i++)
printf ("Table: %s\n", mysql_tablename($result, $i));
mysql_free_result($result);
? 這是手冊上例子 后邊的不用我說了吧 sql查詢
?php
$link?=?mysql_connect('你的主機名','用戶名','密碼');
mysql_select_db('數(shù)據(jù)庫名');
$sql?=?"select?*?from?你的表名";
$res?=?mysql_query('$sql')
$row?=?mysql_fetch_assoc($res);
echo?$row['字段名'];
?
?php
$link=mysql_connect('localhost','用戶名','密碼')or?die("數(shù)據(jù)庫連接失敗");//連接數(shù)據(jù)庫
mysql_select_db('數(shù)據(jù)庫名',$link);//選擇數(shù)據(jù)庫
mysql_query("set?names?utf8");//設(shè)置編碼格式
$q="select?*?from?"數(shù)據(jù)表";//設(shè)置查詢指令
$result=mysql_query($q);//執(zhí)行查詢
while($row=mysql_fetch_assoc($result))//將result結(jié)果集中查詢結(jié)果取出一條
{?echo??返回到HTML;?}
?
html界面使用ajax的成功返回值,再渲染在界面里就行了