[solved] how send value from layout file to some controller

is it possible send some value from layout into controller?

i have layout with :

layout_before_login.php




...

...

<form method="get" action="<?php echo CController::createUrl('login/index'); ?>">

Email <input type="text"/>

Password <input type="password"/>

<input type="submit" value="Login"/>

</form>

...

...



in controller login :


print_r($_POST);

output :




Array

(

)



, how doing well :)

or any advice?

thanks

iam sorry, its solved, thats my fault

forgot the name for text field :)