i have create first page page "login.php" here is username and email
then after submiting form on 2nd page this show another feilds like
'name'.. 'age' location..
after sumbiting 2nd page then on third page there shuld come
login.php values that
"Welcome to "USERNAME value"
and on 3rd page there would b a link of first page.... login.php...
whenever i click on login.php again then ... i shuld not see the Text
feilds........
it shuld come there like you have logged in ... welcome to "username
value"
i hope you get my point
i m unable to do this
plz any one can help me ? as u ppl help me before
i will look forward to hear ur response
SaQib
Comments
That could then be customized so that the registration process spans across a few pages...
The Royal Ram
here is the code
login.php
cookie.php ---- ( here i m getting error )
print.php
here i want to display that Hello "Username" Which i have enter on first page. that username shuld store on cookies.... and when i redirect the login.php.. that page should not ask me for username again.. and login.php should display "hi username(sam)"
plz guide me how to do this..
SaQib
[PHP]
setcookie("uname", $_POST);
[/PHP]
SHOULD BE SOMETHING LIKE:
[PHP]
setcookie("uname", $_POST, time() + 72000);
[/PHP]