Costruisci un array mentre ripeti con il while
ciclo.
$result = mysql_query("SELECT * FROM `Departments`");
$results = array();
while($row = mysql_fetch_assoc($result))
{
$results[] = $row;
}
In alternativa, se hai utilizzato PDO , potresti farlo automaticamente .