Home > Backend Development > PHP Tutorial > php An error occured_PHP教程

php An error occured_PHP教程

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 10:52:25
Original
1534 people have browsed it

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);
}
?>

注要是你在sql后面加了;号,去了就行了,

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632496.htmlTechArticle?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...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template