输入banner图图片脚本导航/分类

php中处理mysql_fetch_assoc返回来的数组不用foreach----echo_PHP教程

代码如下:

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323211.htmlTechArticle 代码如下:

$id = intval($_GET['id']); $row = $db-getResult($db-query("select * from ".$t."product where id=$id;")); $rows = $row[0];//处理mysql_fetch_assoc返回来...