|
|
 |
May 14th, 2008, 10:44 AM
|
#1
|
|
WebForumz Member
Join Date: Jan 2006
Location: Belfast
Posts: 99
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
How to create a login page (beginner)??
Hi,
I am hoping someone might be able to give me some advice and/or point me in the right direction of a good tutorial etc!
I am working to create a website where the index. html page is a 'login page'. The only way the user can view the website is by logging in at this index. html page.
I have created websites before - but never with login pages. Can anyone help me?
I use dreamweaver (I try to code manually where I can). My hosting package includes 5 my sql databases.
Hope this is enough information, as mentioned above this is brand new to me so am looking to the experts on here for advice and guidance!
Thanks in advance,
Ben
|
|
|
May 14th, 2008, 11:16 AM
|
#2
|
|
Highly Reputable Member
SuperMember
Join Date: Oct 2007
Location: Stockport
Age: 18
Posts: 844
Thanks: 0
Thanked 1 Time in 1 Post
Rep Altering Power: 0
|
Re: How to create a login page (beginner)??
Have you had any experience with php and sql, as this is the best way to do this.
found this after a quick google
http://www.tutorialtastic.co.uk/tuto...php_login_page
hope it helps mate
craig
|
|
|
May 17th, 2008, 01:52 AM
|
#3
|
|
Most Reputable Member
Join Date: Feb 2008
Location: In My Own Little World
Age: 15
Posts: 1,346
Thanks: 2
Thanked 45 Times in 45 Posts
Rep Altering Power: 0
|
Re: How to create a login page (beginner)??
whoever thought up that baby pink and baby blue as a color scheme is blind. Sorry, I know its off topic, but........ ugh..........
|
|
|
May 17th, 2008, 03:12 AM
|
#4
|
|
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 28
Posts: 1,630
Thanks: 0
Thanked 4 Times in 3 Posts
|
Re: How to create a login page (beginner)??
Hai, if you are talking about ASP, I have a complete tutorial lined up for you here. Just check out the link below!
ASP-MySQL: Advance Login Page [Step-By-Step Tutorial - Example In Action]
|
|
|
June 17th, 2008, 08:01 AM
|
#5
|
|
New Member
Join Date: Jun 2008
Location: London
Age: 25
Posts: 3
Thanks: 0
Thanked 1 Time in 1 Post
Rep Altering Power: 0
|
Re: How to create a login page (beginner)??
To create a Login Page,First you 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. php
CREATE TABLE users (
username varchar(20) NOT NULL default '',
password varchar(20) NOT NULL default ''
); 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.
Now Open your dreamweaver and create a new page called login.php .
After you have created your login page make a connection to your database.
Website development
Free web templates
Last edited by acton123; June 17th, 2008 at 08:27 AM..
|
|
|
June 17th, 2008, 11:49 AM
|
#6
|
|
Reputable Member
SuperMember
Join Date: Sep 2007
Location: Manchester
Age: 26
Posts: 182
Thanks: 0
Thanked 3 Times in 3 Posts
Rep Altering Power: 0
|
Re: How to create a login page (beginner)??
Are people going to be registering their own accounts at this site, or is just one username and password for everyone?
|
|
|
June 17th, 2008, 11:57 AM
|
#7
|
|
Elite Veteran
SuperMember
Join Date: Jul 2003
Location: Southern UK
Age: 35
Posts: 3,133
Thanks: 28
Thanked 22 Times in 19 Posts
|
Re: How to create a login page (beginner)??
Monie.... you should add that tutorial to our resources section mate 
|
|
|
June 18th, 2008, 06:31 AM
|
#8
|
|
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 28
Posts: 1,630
Thanks: 0
Thanked 4 Times in 3 Posts
|
Re: How to create a login page (beginner)??
|
|
|
June 18th, 2008, 08:28 AM
|
#9
|
|
Elite Veteran
SuperMember
Join Date: Jul 2003
Location: Southern UK
Age: 35
Posts: 3,133
Thanks: 28
Thanked 22 Times in 19 Posts
|
Re: How to create a login page (beginner)??
Quote:
Originally Posted by Monie
|
It does now 
|
|
|
June 18th, 2008, 08:40 AM
|
#10
|
|
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 28
Posts: 1,630
Thanks: 0
Thanked 4 Times in 3 Posts
|
Re: How to create a login page (beginner)??
Oh you just add it? Just now it was not there 
how do I make my tutorial publish in that page? Do I need to typed it all over again?
I tried to add article but the catagory " ASP" is not there?
Last edited by Monie; June 18th, 2008 at 08:43 AM..
|
|
|
June 18th, 2008, 09:53 AM
|
#11
|
|
Elite Veteran
SuperMember
Join Date: Jul 2003
Location: Southern UK
Age: 35
Posts: 3,133
Thanks: 28
Thanked 22 Times in 19 Posts
|
Re: How to create a login page (beginner)??
*fixed*....
Add it under *tutorial*, not *article*
|
|
|
June 18th, 2008, 09:27 PM
|
#12
|
|
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 28
Posts: 1,630
Thanks: 0
Thanked 4 Times in 3 Posts
|
Re: How to create a login page (beginner)??
Thanks.. will try that today 
|
|
|
October 14th, 2009, 09:28 PM
|
#13
|
|
New Member
Join Date: Oct 2009
Location: Nunya
Age: 23
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
Re: How to create a login page (beginner)??
Im Pretty confused!
|
|
|
October 15th, 2009, 05:49 AM
|
#14
|
|
WebForumz Member
Join Date: Sep 2009
Location: .
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0
|
Re: How to create a login page (beginner)??
What are you confused about?
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|