No, I realize that I am getting back an associative array. But I don't just want to print them out, etc., I need a new associative array created with the same field names and values inside my class.
fetcharray returns this:
$row["username"]
$row["firstname"]
$row["lastname"]
...et cetera
I need this array in $fUser->user[x], like this:
$fUser->user[1]["username"]
$fUser->user[1]["firstname"]
$fUser->user[1]["lastname"]
...et cetera
I can't just do $fUser->user[x] = $row[] can I?
Thanks for the post, and sorry if I'm missing the glaringly obvious :o