一下子sql查询代码放入php为什么会空白呢

WBOY
发布: 2016-06-13 12:49:41
原创
872 人浏览过

一下sql查询代码放入php为什么会空白呢?
吧这段sql查询语句放入php就会空白是为什么呢?
语句在mysql查询没问题,可以显示查询结果的.

$sql = mysql_query('select attach.* , category.* from attach, category where attach.id = substring_index(substring_index(substr(category.ext,locate('"attach"',category.ext)),'"',4),'"',-1) order by rand() limit 5');

如果去掉
 substring_index(substring_index(substr(category.ext,locate('"attach"',category.ext)),'"',4),'"',-1)
就没问题,怎么解决呢?


------解决方案--------------------
你在被单引号括起的串中使用了未转义的单引号,难道不报错吗?

$sqlstr = select attach.* , category.* from attach, category where attach.id = substring_index(substring_index(substr(category.ext,locate('"attach"',category.ext)),'"',4),'"',-1) order by rand() limit 5
SQL;
$sql = mysql_query($sqlstr);
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!