欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php中处理mysql_fetch_assoc返回来的数组 不用foreach----echo

程序员文章站 2022-04-28 15:53:41
复制代码 代码如下: $id = intval($_get['id']); $row = $db->getresult($db->query("select *...
复制代码 代码如下:

$id = intval($_get['id']);
$row = $db->getresult($db->query("select * from ".$t."product where id=$id;"));
$rows = $row[0];//处理mysql_fetch_assoc返回来的数组 不用foreach----echo!