mysql_tablename
(PHP3 , PHP4)
mysql_tablename --- 取得表格名称
语法 :
string mysql_tablename
(int result, int i)说明 :
mysql_tablename( )取mysql_list_tables( )所传回的结果指标且传回表格的名称,mysql_num_rows( )可用来决定结果指标中表格的数目。
Example :
<?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++;
}
?>