?php
成都創(chuàng)新互聯(lián)專(zhuān)注為客戶(hù)提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站建設(shè)、網(wǎng)站制作、壽寧網(wǎng)絡(luò)推廣、微信小程序開(kāi)發(fā)、壽寧網(wǎng)絡(luò)營(yíng)銷(xiāo)、壽寧企業(yè)策劃、壽寧品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪(fǎng)、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供壽寧建站搭建服務(wù),24小時(shí)服務(wù)熱線(xiàn):18980820575,官方網(wǎng)址:www.cdcxhl.com
$conn=mysql_connect('localhost','root','root') or die("連接失敗").mysql_error();//連接數(shù)據(jù)庫(kù)
$select=mysql_select_db('數(shù)據(jù)庫(kù)名稱(chēng)',$conn) or die("選擇失敗").mysql_error();//選擇數(shù)據(jù)庫(kù)
$ss="set names gbk";
$aa=mysql_query($ss);//設(shè)置顯示中文
$str="select * from 表名";
$recstr=mysql_query($str);//執(zhí)行查詢(xún)
$row=mysql_fetch_row($recstr);
while($row)
{ echo $row[0].$row[1].$row[2];
$row=mysql_fetch_row($recstr);
?
$goods = D('Goods');//實(shí)例化Model對(duì)象,實(shí)際操作Goods數(shù)據(jù)表
$info = $goods - select();//獲得數(shù)據(jù)信息
print_r($info);//打印信息
沒(méi)這么干過(guò) mysql_list_tables 獲取 所有表信息 返回指針 mysql_tablename 獲取表名
myslq_num_rows函數(shù)來(lái)判斷結(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);
? 這是手冊(cè)上例子 后邊的不用我說(shuō)了吧 sql查詢(xún)