Is it possible to have info from a database be pulled into a useable multidimensional array? Where variables from it would be called as $tablename['rowname']['fieldname']?
So if I had a table called random and it was set up like this:
| prenom| surnom
user_1 | joseph | stalin
user_2 | angela | ashton
the variable $random['user_1']['prenom'] would return joseph. Get what I'm going for?