php An error occured
<?php
function install_postgresql($name, $mail, $title, $content) {
$pgsql_conn = pg_connect("host=localhost port=5432 dbname=book user=vi");
if (!$pgsql_conn) {
echo "connect database error.\n";
exit;
}
$result = pg_query($pgsql_conn, "INSTER INTO topic (man, mail, title, content) VALUES ('$name', '$mail', '$title', '$content');");
if (!$result) {
echo "An error occured.\n";
exit;
}
pg_close($pgsql_conn);
}本文地址:http://www.phprm.com/develop/fs513.html
转载随意,但请附上文章地址:-)