I know there have been many questions on associative arrays, but I haven't seen one that explains what I have to do to extract the data from this way of creating one. Assume that I have selected multiple records from the same field in the database.
while ($Row = mysql_fetch_array($mySQLData))
{
$assocarraydata[]= array('field1'=>$Row["field1"]);
};
I know I can do it this way using the index:
//Put Data into an regular array
while ($Row = mysql_fetch_array($mySQLData))
{
$field1[] = $Row[field1];
}
echo $field1[1];
But I don't know how to do it for the associative array in the first example. Can someone help?
mysql_fetch_array()can do both whatmysql_fetch_assoc()andmysql_fetch_row()do, and that's the default behaviour. – Narf Sep 2 '11 at 22:25$assocarraydata['field1'][] = $Row['field1'];– steveo225 Sep 2 '11 at 22:31