Hi,
I'm working through a book and even thought i'm not encountering errors i don't understand something that's in one of the examples
while ($row = mysql_fetch_array($result)) {
$people[$row['people_id']] = $row['people_fullname'];
}
What exactly does this mean?
$people[$row['people_id']] = $row['people_fullname'];
Is it just finding the entry of 'people_fullname' that matches 'people_id' that was defined earlier in the script?