首頁 > 後端開發 > php教程 > sql在页面执行不通过解决方法

sql在页面执行不通过解决方法

WBOY
發布: 2016-06-13 10:22:04
原創
908 人瀏覽過

sql在页面执行不通过
sql语句在页面执行就报错,放到phpmyadmin执行正常

SQL code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->select * from bn_product where Id=4;create table abc(cmd varchar not null)--
登入後複製



PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?phprequire_once ("config.php");$Id=$_GET["Id"];$me="select * from bn_product where Id=".$Id."";$sql=mysql_query($me);$myarr=mysql_fetch_array($sql);?>
登入後複製


很莫名,求解

------解决方案--------------------
select * from bn_product where Id=4;create table abc(cmd varchar not null)--

这个?

mysql_query 不支持;多条语句。

请分开执行吧。
mysql_query("select * from bn_product where Id='4'")

mysql_query("create table abc(cmd varchar not null)")
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板