log in issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Noorain
    New Member
    • Mar 2008
    • 57

    log in issue

    hi

    input user name & password after that submit than another page open in different window. but previous page show the user name & password. its doesn't blank. i want after submit log in page doesn't show the user name & password in the textbox. but action affected another page. please help me
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    then load the next page in the same window. sometimes users tend to close any unexpected new windows immediately.

    Comment

    • TheServant
      Recognized Expert Top Contributor
      • Feb 2008
      • 1168

      #3
      I agree with Dormilich on closing new windows when I didn't ask for that.

      If you really want, or need a new window, you can put in a condition like:
      Code:
      if ($success!==TRUE) {
      ... display form ...
      }
      And then just set $success to TRUE if the submission was successful.

      Comment

      Working...