为什么我显示这个这个错误?
( ! ) Parse error: syntax error, unexpected 'foreach' (T_FOREACH) in D:\wamp\www\cxblog.php on line 4
这个查询出来是个数组吗?我只想把数据库里面的值取出来 不要数组形式的 应该怎么写呢
$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");
$sql=$pdo->query('select * from blog')
foreach($sql as $row){
print_r($row);
}
?>
PDOStatement PDO::query ( string statement )
mixed PDOStatement::fetch ( [int fetch_style [, int cursor_orientation [, int cursor_offset]]] )
array PDOStatement::fetchAll ( [int fetch_style [, int column_index]] )
PDOStatement PDO::query ( string statement )
mixed PDOStatement::fetch ( [int fetch_style [, int cursor_orientation [, int cursor_offset]]] )
array PDOStatement::fetchAll ( [int fetch_style [, int column_index]] )
PDOStatement PDO::query ( string statement )
mixed PDOStatement::fetch ( [int fetch_style [, int cursor_orientation [, int cursor_offset]]] )
array PDOStatement::fetchAll ( [int fetch_style [, int column_index]] )
改成这样.
<?php $pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ print_r($v);}?>
改成这样.
<?php $pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ print_r($v);}?>
改成这样.
<?php $pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ print_r($v);}?>
当然是数组形式的!
你 select * from blog
这个 * 表示的是表中的所有字段,php 不可能越俎代庖的将他们链接成一个值
即便表中只有一个字段,但 php 也是不会知道的
因为所有的解释权在你,而不是在 php
当然是数组形式的!
你 select * from blog
这个 * 表示的是表中的所有字段,php 不可能越俎代庖的将他们链接成一个值
即便表中只有一个字段,但 php 也是不会知道的
因为所有的解释权在你,而不是在 php
我已经说过了,php 对于数据库查询,总是返回数组的
$pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ echo $v['content']; //这样不就是但值了吗?}
我已经说过了,php 对于数据库查询,总是返回数组的
$pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ echo $v['content']; //这样不就是但值了吗?}