How to create a login page (beginner)??

This is a discussion on "How to create a login page (beginner)??" within the Databases section. This forum, and the thread "How to create a login page (beginner)?? are both part of the Program Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > Databases

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old May 14th, 2008, 13:44
Up'n'Coming Member
Join Date: Jan 2006
Location: Belfast
Posts: 81
Thanks: 0
Thanked 0 Times in 0 Posts
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old May 14th, 2008, 14:16
unitedcraig's Avatar
SuperMember

SuperMember
Join Date: Oct 2007
Location: Stockport
Age: 17
Posts: 844
Blog Entries: 1
Thanks: 0
Thanked 1 Time in 1 Post
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
__________________
Last Blog Entry: A Royal Mistake (Feb 20th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old May 17th, 2008, 04:52
CloudedVision's Avatar
Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 1,269
Blog Entries: 9
Thanks: 2
Thanked 40 Times in 40 Posts
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..........
__________________
Web Design And Development: Other Road Design | Problems with IE6?: KApp | My Blog: Only Nerds Allowed | Learning PHP? Lessons
Last Blog Entry: Hilarious Rapper (Jul 29th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old May 17th, 2008, 06:12
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,612
Blog Entries: 2
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]
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jun 17th, 2008, 11:01
New Member
Join Date: Jun 2008
Location: London
Age: 24
Posts: 3
Thanks: 0
Thanked 1 Time in 1 Post
Re: How to create a login page (beginner)??

To create a Login Page,First you should create a table calledusers. 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; Jun 17th, 2008 at 11:27.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jun 17th, 2008, 14:49
Emzi's Avatar
SuperMember

SuperMember
Join Date: Sep 2007
Location: Manchester
Age: 25
Posts: 155
Thanks: 0
Thanked 0 Times in 0 Posts
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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jun 17th, 2008, 14:57
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
Re: How to create a login page (beginner)??

Monie.... you should add that tutorial to our resources section mate
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jun 18th, 2008, 09:31
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,612
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Re: How to create a login page (beginner)??

It don't have ASP?
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Jun 18th, 2008, 11:28
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
Re: How to create a login page (beginner)??

Quote:
Originally Posted by Monie View Post
It don't have ASP?
It does now
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Jun 18th, 2008, 11:40
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,612
Blog Entries: 2
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 Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)

Last edited by Monie; Jun 18th, 2008 at 11:43.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Jun 18th, 2008, 12:53
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
Re: How to create a login page (beginner)??

*fixed*....

Add it under *tutorial*, not *article*
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old Jun 19th, 2008, 00:27
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,612
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Re: How to create a login page (beginner)??

Thanks.. will try that today
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
php login page was working but is not anymore? bonnit PHP Forum 6 May 26th, 2008 05:16
[SOLVED] php Login page dhossai PHP Forum 26 Oct 17th, 2007 17:53
Login page HELP!!!!! biggy1985 PHP Forum 1 Apr 25th, 2007 14:38
help creating a login and logout page geyids PHP Forum 14 Mar 26th, 2007 06:35
Returing to original page after login smokeythebear JavaScript Forum 3 Dec 28th, 2006 10:16


All times are GMT. The time now is 02:12.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved