Voting

: nine minus three?
(Example: nine)

The Note You're Voting On

enyo at www.red-link.com
21 years ago
Just because it is not really clear how to specify the result type, I poste this message.

I wrote a wrapper function which looks like this:

<?php
function db_fetch_array ($result, $row = NULL, $result_type = PGSQL_ASSOC)
{
$return = @pg_fetch_array ($result, $row, $result_type);
return
$return;
}
?>

I think this way it is quite comfortable to get the arrays you want.

<< Back to user notes page

To Top