>  기사  >  백엔드 개발  >  请教使用php的pdo查询出来如何会是空白

请教使用php的pdo查询出来如何会是空白

WBOY
WBOY원래의
2016-06-13 12:37:07835검색

请问使用php的pdo查询出来怎么会是空白?
我有一个php是这样写的:

<?php<br />
require('inc/pdo.php');<br />
$lt=$dbc->prepare(" select b.subject from pre_forum_forum a inner join pre_forum_forum aa on a.fid=aa.fup inner join pre_forum_thread b on b.fid=aa.fid where a.name='你好'");<br />
$lt->execute();<br />
while($row=$lt->fetch()){<br />
print_r($row);<br />
};<br />
?>


打开页面是一片空白,本以为是写错了,就换了一个sql语句:
select * from tablename 


这样就正常,请教大神这是为什么?

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.