How can i get members to sign up to my site, what code do i need? I need this code as soon as possible, Thanks in advance 
members signing up
any more detials?
mysql
flat file
???????
mysql
flat file
???????
well i am new to all this all i was wanting to know is how can i get people to sign up to my website wat code do i need what do i use for members to sign up
got to hotscripts.com they have loads of ready made script to download!
and also try using the search form... i believe i wrote some basic registration/authentification code for someone around here a while back 
Or you can go to techtuts.com
Thanks Guys
You helped alot, I willl try all of them, now my site will be able to have its own members.
cool
You helped alot, I willl try all of them, now my site will be able to have its own members.
you can always try a basic members area
Step 1
Copy the below form into a new php document:
Ok we have a form and an input, called pass.
When they click Log In it will take them to check.php
Step 2
So create a new document called check.php and use the below code:
So this is an if and else statement, replace PasswordHere with the password you want to use!
Step 3
If the password in the form and your password match then it will keep check.php but actually load inside it welcome.php If its wrong it will redirect them to error.php
Step 1
Copy the below form into a new php document:
| Code: |
| <form name="pp" method="post" action="check.php">
<input type="password" name="pass"> <input type="submit" value="Log In"> </form> |
Ok we have a form and an input, called pass.
When they click Log In it will take them to check.php
Step 2
So create a new document called check.php and use the below code:
| Code: |
| <?php
if ($_POST['pass'] == "PasswordHere") { include ("welcome.php"); } else { header("Location: error.php"); } ?> |
So this is an if and else statement, replace PasswordHere with the password you want to use!
Step 3
If the password in the form and your password match then it will keep check.php but actually load inside it welcome.php If its wrong it will redirect them to error.php
