$data = array(); // create a variable to hold the informationwhile (($row = mysql_fetch_array($result, MYSQL_ASSOC)) !== false){ $data[] = $row; // add the row in to the results (data) array}print_r($data); // print result
更新17年2月 现在已经是2017年了,建议您在mysql_
*上使用PDO。安全
fetchAll得多,并且可以本地返回(如`TrexXx的答案所示)。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)