pg_insert

( PHP 4 CVS only )

pg_insert -- Insert array into table.

Description

bool pg_insert ( resource connection, string table_name, array assoc_array [, int options])

דוגמה 1 . pg_insert

 
?php

 
$db

 
=

 
pg_connect

 
(

 
'dbname=foo')

 
;

 
/

 
/

 
This

 
is

 
safe

 
,

 
since

 
$_POST

 
is

 
converted

 
autotmatically

 
$res

 
=

 
pg_insert($db

 
,

 
'post_log'

 
,

 
$_POST)

 
;

 
if

 
($res

 
)

 
{

 
echo

 
"POST

 
data

 
is

 
succesfully

 
logged\n"

 
;

 
    }

 
else

 
{

 
echo

 
"User

 
must

 
have

 
sent

 
wrong

 
inputs\n"

 
;

 
    }

 
?



הערה :