phpstudy|php An error occured

时间:2015-03-14  来源:PostgreSQL  阅读:

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后面加了;号,去了就行了,

phpstudy|php An error occured

http://m.bbyears.com/shujuku/13609.html

推荐访问:phpstorm php面试题 php数组转字符串 php教程
相关阅读 猜你喜欢
本类排行 本类最新