PHP 8.5.0 Alpha 1 available for testing

Voting

: max(five, five)?
(Example: nine)

The Note You're Voting On

karlo dot petravic at hotmail dot com
6 years ago
As table name you can also specify columns you want imported.

Will import all columns:
<?php
pg_copy_from
($db, 'cpm.ics', $rows);
?>

Will import only specified columns:
<?php
pg_copy_from
($db, 'cpm.ics (type, product, date, count, amount)', $rows);
?>

<< Back to user notes page

To Top