(PHP 3>= 3.0.7, PHP 4 , PHP 5)
Restituisce un integer contenente il numero di campi in un result set.
<?php $dbh = ibase_connect ($host, $username, $password); $stmt = 'SELECT * FROM tblname'; $sth = ibase_query ($dbh, $stmt); if (ibase_num_fields($sth) > 0) { while ($row = ibase_fetch_object ($sth)) { print $row->email . "\n"; } } else { die ("Nessun result รจ stato trovato per la tua query"); } ibase_close ($dbh); ?>
Vedere anche: ibase_field_info().
Hosting by: hurra.comGenerated: 2007-01-26 17:56:25