How to code form element and/or (php) script for this type of form? Thank you everyone.
|
|
You can use hidden text box(or checkbox...) as state holder. When sign-up button clicked this textbox text set to, well, 'signup'(using javascript click handler attached to that sign-up button). Then form submitted. On server-side you can check for this parameter in request. Hope this help. UPDATE:
Is this your form? Not that when you click Signup action=Signup but when you click Login action=Login UPDATE 1:
Why do you need separate signup.php? Well, user MUST type his/her password twice. Then you need confirmation e-mail and so on. You see, this stuff can be implemented in thousand different ways. If you want more useful help you should give me more information. E.g: 1) Do you use MVC? 2) Do you use templates? and so on. By the way I used GET for clarity(you can see form field values in address bar). In real project you should use POST in form and hence $_POST in login.php |
||||||||||
|
