i have two lines:
var_dump($parametros_post_signin);
$this->redirect('prueba/aux?email='.$parametros_post_signin['signin']);
first prints this:
array
'signin' =>
array
'email_address' => string '' (length=0)
'password' => string '' (length=0)
the second takes a different action, where I have this code:
var_dump($request->getParameter('email'));
which prints this:
string 'password' (length = 8)
I expected it to print something like this:
string '' (length = 0)
What do I need to do to get the value of the email_address field?
Hi
Xavi
source
share