mysql_tablename

說明,例子,

說明

string mysql_tablename ( resource result, int i )
本函式可取得資料表名稱字元串,一般配合 mysql_list_tables() 函式使用,取得該函返回的數字的名稱字元串。

例子

<?php
mysql_connect ("localhost:3306");
$result = mysql_list_tables ("wisconsin");
$i = 0;
while ($i < mysql_num_rows ($result)) {
$tb_names[$i] = mysql_tablename ($result, $i);
echo $tb_names[$i] . "<BR>";
$i++;
}
?>

相關詞條

熱門詞條

聯絡我們