I had a problem finding some way to accept the data below and being able to parse it as arrays, etc. in PHP or Python.
$data = array(
'full_name' => array('name'=>'Full Name', 'type'=>'textarea'),
'company' => array('name'=>'Organization', 'required'=>true),
}
There are many more fields in this internal array, and there is no specific order in how they appear.
Is there any way for parsing user input from a text field and its ability to use it as an array, which it is? Or any other ideas on what to do with it?
source
share