hi...
I want to use an array to store 10 occurences of 4 different variables, basically because I want to link them..
so:
$stuff[1] = array('a' => 'tick', 'b' => 'firstname', 'c' => 'lastname', 'd' => 'middlename');
This brings back a parse error..
can someone please help me figure out what I have done wrong... looks very similar to the above egs?
Then I need to figure out how to get this data from the input boxes on the screen...
Would I be better to hardcode 4 arrays of size 10 and use the counter as the link??
Thanks for any advice/pointers!
Beth