Copy code The code is as follows:
$id = intval($_GET['id']);
$row = $ db->getResult($db->query("select * from ".$t."product where id=$id;"));
$rows = $row[0];//Processing mysql_fetch_assoc The returned array does not require foreach----echo!
http://www.bkjia.com/PHPjc/323211.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323211.htmlTechArticleCopy the code The code is as follows: $id = intval($_GET['id']); $row = $db -getResult($db-query("select * from ".$t."product where id=$id;")); $rows = $row[0];//Return from processing mysql_fetch_assoc...