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

search for in the

fbsql_username> <fbsql_table_name
[edit] Last updated: Tue, 21 May 2013

view this page in

fbsql_tablename

(PHP 4 >= 4.2.0, PHP 5)

fbsql_tablenameRestituisce 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 - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites