$sql = "insert into my_table ...";
$rs = pg_query($rs);
var_dump($rs); // => tableresource(9) of type (pgsql result)
Hi, What's this? object? array? how can I use it?
The row is inserted in the table.
The PHP doc page should be improved in this regard. The page http://www.php.net/manual/en/function.pg-query.php says that:
Return Values A query result resource on success or FALSE on failure.
There should be a link result resource explaining what it is ...
Regards,
Leandro.