fbsql_username

(PHP 4 >= 4.0.6, PHP 5)

fbsql_username -- Get or set the host user used with a connection

Description

string fbsql_username ( resource link_identifier [, string username])

Warning

This function is currently not documented; only the argument list is available.

bsql_list_tables("wisconsin");
$i = 0;
while (
$i < fbsql_num_rows($result)) {
    
$tb_names[$i] = fbsql_tablename($result, $i);
    echo
$tb_names[$i] . "<br />";
    
$i++;
}
?>