I have a form that allows users to add 4 old classes and 4 new classes. The purpose of this is to determine the factors associated with the classes. These values are passed to a php file with the following array:
$classes("class" => 000, "factor" => 0.00), etc, etc.
I have verified that the value is coming thru correctly, what I want to do is be able to grabe the factor field using that value i.e.
echo $classes[$old_class1]['factor'];
It is not working and I'm wondering if there is something additional I need to do, or will the array not allow an index in this format???
Thanks for any input.