a quick answer about how to get the value (and pass it in a php variable) from an array:
i've this array:
$array = array(
array('name' => 'infotel', 'value' => '+39080123456' ),
array('name' => 'location', 'value' => 'Bari')
);
I need to pass the "value" of "infotel" in a $telephone variable, and the "value" of "location" in a $city variable.
how can i solve this trouble? thanks