vote up 0 vote down star

How to code form element and/or (php) script for this type of form? Thank you everyone.

flag

1 Answer

vote up 0 vote down

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:

<form action="/login.php" method="get">
    <p>
    Login: <input type="text" name="login"><br>
    Password: <INPUT type="text" name="password"><br>
    <input type="submit" name="action" value="Signup"> <input name="action" type="submit" value="Login">
    </p>
 </form>

Is this your form?

Not that when you click Signup action=Signup but when you click Login action=Login

UPDATE 1:


if($_GET('action') == 'Signup'){
   //redirect to full signup form
   header( 'Location: signup.php' ); //note: html tags NOT ALLOWED before this line.
else{
   //process logon (calculate hash and so on)
}

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

link|flag
on server-side(PHP): if ($_GET['signup'] == 'signup'){} on client-side(jQuery) $('signup_button').click(function(){ $('signup').attr('value','signup');} – Trickster Nov 1 at 17:18
Do you still have questions? – Trickster Nov 1 at 22:21
see my updated post – Trickster Nov 1 at 23:41
You see, Mike. The problem is that you did not told how this form should look. Which fields it contains ? For my form see update. – Trickster Nov 3 at 8:47
ok it was typo - you should read as "Note that when you click..." – Trickster Nov 5 at 18:05
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.