OK! Sorry.
I want to put my CV on the 'net. For each previous job I need a single array, something like this:
Job1 (task1 => details, task2 =>details, task3 => details)
Job2 (task1 => details, task2 =>details, task3 => details)
etc...
Then I want this to exist in a multdimensional array called 'experience':
Experience (0 => Job1, 1=> Job2, etc...)
My two problems are:
1-Getting this info into a multidimensional array from a MySQL database. Can I construct this with the mysql_query() function, assuming there is a separate table for each job?
2-Echoing each element of the md array on the page. Can the mysql_fetch_array() function deal with multidimensional arrays?
Hope that's a bit clearer.