php An error occured
栏目:php教程时间:2014-01-20 11:21:53
- <?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.";
- exit;
- }
-
- $result = pg_query($pgsql_conn, "INSTER INTO topic (man, mail, title, content) VALUES ('$name', '$mail', '$title', '$content');");
- if(!$result){
- echo "An error occured.";
- exit;
- }
-
- pg_close($pgsql_conn);
- }
- ?>
------分隔线----------------------------
------分隔线----------------------------