0% found this document useful (0 votes)
67 views3 pages

Create Table Users (Username Varchar (20) Not Null Default "", Password Varchar (20) Not Null Default "", Primary Key (Id) ) Type Innodb

The document provides instructions for creating a login page in Dreamweaver that verifies a user's username and password against entries in a database table, including creating a "users" table to store usernames and passwords, building a login form to collect credentials, connecting to the database, configuring Dreamweaver's login validation feature to check the form values, and testing the login functionality.

Uploaded by

Jagan Asan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
67 views3 pages

Create Table Users (Username Varchar (20) Not Null Default "", Password Varchar (20) Not Null Default "", Primary Key (Id) ) Type Innodb

The document provides instructions for creating a login page in Dreamweaver that verifies a user's username and password against entries in a database table, including creating a "users" table to store usernames and passwords, building a login form to collect credentials, connecting to the database, configuring Dreamweaver's login validation feature to check the form values, and testing the login functionality.

Uploaded by

Jagan Asan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Note: 

Before you attempt this tutorial you should have some DB server running on your computer such as MySql. If not
download dev5beta3.exe and install PHP, Apache and MySql together with phpMyAdmin with one click, and you will be
ready for all the dynamic tutorials.This tutorial will teach you how to make a login page in Dreamweaver MX. At the end of
the tutorial you will have a page where users can enter their username and password and if the username and password
which they entered match the records in the database they will be allowed to enter the restricted page in other words
redirected to the members area.

1. First we should create a table called users. This is the table that we will check the form fields against. Use the followig
code to create this table. phpMyAdmin is preferred.

CREATE TABLE users ( 


username varchar(20) NOT NULL default "", 
password varchar(20) NOT NULL default "", 
PRIMARY KEY (ID) 
) TYPE=InnoDB;

After you have created your table populate it at least with one entry, for the sake of example we will use admin for
username and admin for password. You are free to populate with your own data.

2. Now Open your dreamweaver and create a new page called login.php Here is the page and here is the code for
creating that form with the two fields.

After you have created your login page make a connection to your database. If you have made a successful connection you
should see your Table details in the Application window similar to the screenshot below.

3. While you are still in login.php page Choose Applications > Log In User.

4. Next you will be displayed with a pop up window where you have to make selections. First part of the window shows
details of your form, second part your database and third part is a redirection process and finally restriction option based on
your database table structure. This window is quite self explanatory just choose the right option from drop down menu. If
you have a successful connection to your database your connection will be displayed in the Validate using
connection section. If you don"t see your connection in the drop down menu then you have to check your connection
again (Step 2).

For Restrict access based on choose Username and password and not Username, password and access level.
This is because our table has only username and password fields. After you are done choose OK.

5. Check Application > Server Behaviors Panel and you should see your script name there now. You can double click on
it and edit anytime again, in case if you want to redirect to different page...etc

6. You are done! That was pretty easy huh? ;) Go ahead and test your login.php and see if it will do what it supposed to do.
Remember it will check against users table in your database so make sure you enter correct data, in our case it was admin
admin for username and password respectively.Note: Your menu.php (page which user is redirected if login succeeds)
should be user protected. Otherwise it does not make sense to make a login page to access it right?

You might also like