PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

fbsql_username> <fbsql_table_name
Last updated: Fri, 27 Jun 2008

view this page in

fbsql_tablename

(PHP 4 >= 4.2.0, PHP 5)

fbsql_tablename — Restituisce il nome della tabella dei campi

Descrizione

string fbsql_tablename ( resource $result , int $i )

La funzione fbsql_tablename() utilizza il puntatore al risultato restituito da fbsql_list_tables() e restituisce il nome della tabella. Si può, inoltre, utilizzare la funzione fbsql_num_rows() per determinare il numero di tabelle presenti in un risultato.

Example #1 Esempio di uso di fbsql_tablename()

<?php 
fbsql_connect
("localhost""_SYSTEM""");
$result fbsql_list_tables("wisconsin");
$i 0;
while (
$i fbsql_num_rows($result)) {
    
$tb_names[$i] = fbsql_tablename($result$i);
    echo 
$tb_names[$i] . "<br />";
    
$i++;
}
?>



add a note add a note User Contributed Notes
fbsql_tablename
There are no user contributed notes for this page.

fbsql_username> <fbsql_table_name
Last updated: Fri, 27 Jun 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites