Rumah >pembangunan bahagian belakang >tutorial php >sql在页面执行不通过解决方法

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

WBOY
WBOYasal
2016-06-13 10:22:04912semak imbas

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)")
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn