首頁 > 後端開發 > php教程 > php无法向mysql中插入值解决方案

php无法向mysql中插入值解决方案

WBOY
發布: 2016-06-13 10:21:19
原創
912 人瀏覽過

php无法向mysql中插入值

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->conn.php<?php /* * Created on 2012-5-7 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates */ $conn=@ mysql_connect("localhost","root","admin") or die("数据库连接失败"); mysql_select_db("bbs",$conn); mysql_query("set names 'GBK'"); //使用GBK中文编码;?>add.php<?php /* * Created on 2012-5-7 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates * */ include("conn.php"); if($_POST['submit']){  $sql="insert into message (id,user,title,content,lastdate)" .             "values ('','$_POST[user]','$_POST[title]','$_POST[content]',now())";  mysql_query($sql);  echo "发表成功"; }?>  
登入後複製
用户:
标题:
内容:


------解决方案--------------------
mysql_query($sql) or die(mysql_error()); //这样提示什么错误
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板