schumiel: SQL in ein array

Beitrag lesen

$strSQL = "SELECT id FROM zahl where status='klein'";
$result = mysql_query($strSQL);

$zahl = array();

while($row = mysql_fetch_row($result))
{
  $zahl[] = $row[0];
}

echo $zahl[1];

-------------------------

Dieses "echo $zahl[1];" benötige ich wie im Eingangspost in der Form:

$zahl = array("1","2", ....);

Wie geht das?