<body>
比如我用SELECT查询某个表中的某个ID的字段。
结果类似
问题来了:请问如何输出获取到的这条数据?
格式类似:
id:xxx
product_id :xxx
number:xxx
…
注意点:
我并不知道里面有product_id等字段的名称也就是不能通过 类似 while后用 $xxx[‘product_id’]的方式输出
回复内容:
<body>
比如我用SELECT查询某个表中的某个ID的字段。
结果类似
问题来了:请问如何输出获取到的这条数据?
格式类似:
id:xxx
product_id :xxx
number:xxx
…
注意点:
我并不知道里面有product_id等字段的名称也就是不能通过 类似 while后用 $xxx[‘product_id’]的方式输出
先取得表的列名。SHOW COLUMNS FROM tbl_name
<code>$data = $mysql->query("select * from $table_name where id = $id");foreach($data as $k){//这里是结果集 foreach($k as $kk=>$vv){ echo $kk.':'.$vv.'<br />';//避开键名写死的情况 }}</code>
参考的官方例子
A nice feature of PDO::query() is that it enables you to iterate over
the rowset returned by a successfully executed SELECT statement.
<code><?ph<a>2本文来源gao*daima.com搞@代#码&网6</a><pre>搞gaodaima代码
pfunction getFruit($conn) { $sql = ‘SELECT name, color, calories FROM fruit ORDER BY name’; foreach ($conn->query($sql) as $row) { print $row[‘name’] . “\t”; print $row[‘color’] . “\t”; print $row[‘calories’] . “\n”; }}?>———-apple red 150banana yellow 250kiwi brown 75lemon yellow 25orange orange 300pear green 150watermelon pink 90