複製代碼 代碼如下:<?php
@mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器
or die("資料庫伺服器串連失敗");
$dbs = mysql_list_dbs(); //調用mysql_list_dbs函數
while ($array = mysql_fetch_row($dbs)) //迴圈輸出所有的資料庫名稱
{
echo "$array[0]<BR>";
}
?>
複製代碼 代碼如下:<?php
@mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器
or die("資料庫伺服器串連失敗");
$dbs = mysql_list_tables("test"); //調用mysql_list_tables函數
while ($array = mysql_fetch_row($dbs)) //迴圈輸出所有的表名稱
{
echo "$array[0]<BR>";
}
?>
複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427"); //串連伺服器
mysql_select_db("test"); //選擇資料庫
$result = mysql_query("SELECT * FROM tablename1"); //執行查詢操作
echo mysql_num_fields($result); //擷取列的數目
?>
複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_name($result,0); //擷取列的名稱
?>
複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_type($result,0); //擷取列的資料類型
?>
複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_len($result,0); //擷取列的長度
?>
複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_flag($result,0); //擷取列的標誌
?>
複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427"); //串連伺服器
mysql_select_db("test"); //選擇資料庫
echo "<table border='1'>"; //輸出表頭
echo "<tr><th>列名</th><th>類型</th><th>長度</th><th>標誌</th>";
$result = mysql_query("SELECT * FROM tablename1"); //在mytable表上執行SQL語句
$fields = mysql_num_fields($result); //獲得列的數目
for($i=0; $i<$fields; $i++) //迴圈獲得各列資訊
{
//獲得列的各個屬性
$name = mysql_field_name($result,$i); //獲得列的名稱
$type = mysql_field_type($result,$i); //獲得列的類型
$length = mysql_field_len($result,$i); //獲得列的長度
$flags = mysql_field_flags($result,$i); //獲得列的標誌
echo "<tr><td>$name</td>
<td>$type</td>
<td>$length</td>
<td>$flags</td></tr>";
//輸出資料行的資訊
}
echo "</table>";
mysql_close(); //關閉與資料庫的串連
?>