como puedo obtener el valor de tipo y nombre dentro del foreach?
Código PHP:
echo $parametros[0].'<br/><br/>';
//%5B%7B%22tipo%22%3A%22text%22%2C%22nombre%22%3A%22Escribe+el+nombre%22%7D%2C%7B%22tipo%22%3A%22text%22%2C%22nombre%22%3A%22Escribe+el+nombre2%22%7D%2C%7B%22tipo%22%3A%22submit%22%2C%22nombre%22%3A%22Enviar%22%7D%5D
echo urldecode($parametros[0]).'<br/><br/>';
//[{"tipo":"text","nombre":"Escribe el nombre"},{"tipo":"text","nombre":"Escribe el nombre2"},{"tipo":"submit","nombre":"Enviar"}]
$elementos=json_decode(urldecode($parametros[0]));
foreach($elementos as $elemento){
print_r($elemento);echo '<br/><br/>';
/*
stdClass Object ( [tipo] => text [nombre] => Escribe el nombre )
stdClass Object ( [tipo] => text [nombre] => Escribe el nombre2 )
stdClass Object ( [tipo] => submit [nombre] => Enviar )
*/
}