Během iterace pomocí while
vytvořte pole smyčka.
$result = mysql_query("SELECT * FROM `Departments`");
$results = array();
while($row = mysql_fetch_assoc($result))
{
$results[] = $row;
}
Případně, pokud jste použili CHOP , můžete to udělat automaticky .