Bouw een array op terwijl u itereert met de while
lus.
$result = mysql_query("SELECT * FROM `Departments`");
$results = array();
while($row = mysql_fetch_assoc($result))
{
$results[] = $row;
}
Als alternatief, als je BOB hebt gebruikt , kunt u dit automatisch doen .