i am not able to get the values entered by user on my login form...the code is as follows
CODE
<models>
<model>
<instance>
<data xmlns="">
<username></username>
<password>
</password>
</data>
</instance>
<submission method="urlencoded-post" resource="login.php" />
</model>
</models>
<content>
<module>
<input ref="username">
<label>UserName</label>
</input>
<secret ref="password">
<label>Password</label>
</secret>
<submit>
<label>Sign In</label>
</submit>
and in my php file m using
CODE
isset($_REQUEST['username']) ? $userid = $_REQUEST['username'] : $userid = "";
isset($_POST['password']) ? $passwd = $_POST['password'] : $passwd = "";
bt my $_REQUEST['username'] and $_POST['password'] are always initialized as " "
is thr any prob with my code or sumthing else
plz do help asap
Thanks,
Ashish