sql在页面执行不通过解决方法
程序员文章站
2022-06-14 12:22:41
...
sql在页面执行不通过
sql语句在页面执行就报错,放到phpmyadmin执行正常
很莫名,求解
------解决方案--------------------
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)")
sql语句在页面执行就报错,放到phpmyadmin执行正常
- SQL code
select * from bn_product where Id=4;create table abc(cmd varchar not null)--
- PHP code
很莫名,求解
------解决方案--------------------
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 sftp下传上载
下一篇: 关于PHP伪静态的研讨