|
wb_fetch_into | PHP Interface | wb_result |
This function sets the current record. Any consecutive calls to the wb_result function will read data from the record that was set by this function.
TRUE if successful, otherwise it is FALSE (including the "record doesn't exist" error).
Display the content of the query:
$cursor=wb_exec($conn, "select * from salesreport"); while (wb_fetch_row($cursor)) { echo( wb_result($cursor, 1).": <i>".wb_result($cursor, 2)."</i></br>"); }
wb_fetch_into | PHP Interface | wb_result |