老师你好,请问我这里怎么加了PDO::FETCH_ASSOC后就没有东西显示里,用setfetchmode一样也没有东西
小小攻城狮
2014-09-01
3 回答
<?php
$pdo=new PDO('mysql:host=localhost;dbname=test','root','123456');
try{
$sql='select * from user';
$stam=$pdo->prepare($sql);
//var_dump($stam);
$stam->setfetchmode(pdo::fetch_assoc);
$res=$stam->execute();
print_r('<pre>');
$row=$stam->fetchall();
print_r($row);
// if($res){
// while ($row=$stam->setfetchmode()) {
// print_r($row);
// echo '<hr />';
// }
// }
}
catch(pdoexception $e){
echo $e->getmessage();
}
举报
0/150
提交
取消