<?php function mysql_fetch_all($result) { $rows=array(); while($row=mysql_fetch_array($result)){ array_push($rows,$row); } return $rows; } ...
確定! 回上一頁