Registration & Login
Register [Free]
Choose your Username

Choose your Password

Reinsert your Password

Email


 
 Info() ↓ 
... view ics'author listings @ ScriptSearch.com - rate
Click here to subscribe or for more infos !
This Registration Form is to be used in combination with a database table that will be checked for records if already existing for not creating doubles.
    ... get your access data in a few seconds by E-mail
 
# File name : auth_users.sql ( table dump )
CREATE TABLE auth_users (
   login varchar(10) NOT NULL,
   PASSWORD varchar(10) NOT NULL,
   posta varchar(35) NOT NULL,
   ID int(11) DEFAULT '0' NOT NULL auto_increment,
   PRIMARY KEY (ID)
);
If you are just interested to register for accessing the reserved areas, please by-pass the technical descriptions of this page and just fill the registration form and once you have done, get back to this page to login herein in the form below...
If registration was successful the User has a row into the database auth_users , this row must contain his e-mail as well :-)
The green layout [above right] shows the mysql-dump to let you test the application ; so you will need first of all to create such a table to rebuild the program for your use, then ...[see the lower section of this page]
      Login
Username
Password 
 
  . . . test-page layout ( registration_test.php#layout ) - Layouts
Register-free and advertise your website by linking from here, or surf the Visitors'Reserved Area, or post in the Forum !

Layouts for Registration Scripts
To run this program we need 7 files :
common.php 
registration_scripts_main.php ( this )
registration_add_data.php
registration_test.php ( login page )
e-mail.php
any_reserved_member_page.php
auth_users.sql ( see the above section in green )
File name : registration_scripts_main.php
<FORM METHOD="POST"ACTION="registration_add_data.php"> Choose your Username<BR> <INPUT TYPE=TEXT NAME="login"size=31><BR> Choose your Password<BR> <INPUT TYPE=PASSWORD NAME="password"size=31><BR> Reinsert your Password<BR> <INPUT TYPE=PASSWORD NAME="password2"size=31> <BR>Email<BR><INPUT TYPE=TEXT NAME="posta"size=31> <BR><INPUT TYPE="SUBMIT" VALUE="Register">  <INPUT TYPE="RESET" VALUE="Cancel"></FORM> <FORM METHOD="POST" action=registration_test.php> Username : <INPUT TYPE=TEXT NAME="login"size=31><br> Password : <INPUT TYPE=PASSWORD NAME="password"size=31><BR> <INPUT TYPE="SUBMIT"VALUE="Login">  <INPUT TYPE="RESET"VALUE="Cancel"></FORM>
The following is the code to send the data to a target page ( registration_test.php ), this will be, for the service application, the login page :
<FORM METHOD=POST ACTION=registration_test.php>
Username : <INPUT TYPE=TEXT NAME=login><BR>
Password : <INPUT TYPE=PASSWORD NAME=password>
<BR><INPUT TYPE=SUBMIT VALUE=test>
<INPUT TYPE=RESET VALUE=Cancel> </FORM>

Here next the links & diagram for all layouts :
Blue layout-links require a fee Subscription ( elsewhere ) ,
the demo can be nevertheless surfed in all functions.
common.php will connect to site database all files
registration_scripts_main.php this is the essential code
of this page and sends the values to
registration_add_data.php
registration_add_data.php will check the database
and will address the result to
e-mail.php
e-mail.php will e-mail the data to the Subscriber
Then the Subscriber receives the e-mail and can use the
access data to Login = and ...