Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Programming

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 12-07-2004, 10:33 PM
saran's Avatar
Novice Webmaster
 
Join Date: Mar 2004
Location: Bangsar
Posts: 42
Rep Power: 0
saran is on a distinguished road
Send a message via Yahoo to saran
how to create member database...

Anyone here know how..to make members database..where they can log in and register in a site
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 13-07-2004, 12:03 AM
zmiey's Avatar
Senior Webmaster
 
Join Date: Apr 2002
Location: Cyberspace
Posts: 494
Rep Power: 89
zmiey is on a distinguished road
Send a message via ICQ to zmiey
more info are needed..
__________________
Domain Registration = RM35/Year com net org biz info us
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 13-07-2004, 01:45 AM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 116
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
use MySQL?
What do you want to do actually?
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 13-07-2004, 01:18 PM
mysticmind's Avatar
Super Moderator
 
Join Date: Jun 2001
Location: Mystic Kingdoms
Posts: 2,633
Rep Power: 142
mysticmind will become famous soon enough mysticmind will become famous soon enough
Send a message via Yahoo to mysticmind

( yawning... )
not enough info, please try again later
__________________
Personal's Blog! - Malaysian Artist!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 13-07-2004, 03:48 PM
paranoidz's Avatar
Novice Webmaster
 
Join Date: Jul 2002
Location: dalam perut bumi
Posts: 40
Rep Power: 0
paranoidz is on a distinguished road
use php + mysql
__________________
<embed src="http://www.geocities.com/paranoidz02/new.swf" WIDTH=400 HEIGHT=55 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>®
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 13-07-2004, 06:48 PM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 116
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
so, it is a member login script?
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 16-07-2004, 02:18 PM
Novice Webmaster
 
Join Date: Jul 2004
Location: kl
Posts: 17
Rep Power: 0
grren_bean is on a distinguished road
First you need to create a table with two columns:

1. username varchar(20)
2. password varchar(32)

In your registration page, create a form for three fields:

1. username
2. password
3. confirm password

If everything is ok when the user post the form, insert a record into the table with the username and md5 hash of the password. Use md5 because it is not good to keep clear text password in the database, but do bear in mind that md5 is one way hashing, there is no way to retrieve the password after that.

In your login page, create a form with two fields:

1. username
2. password

If everything is ok when the user post the form, query the table to see if there is a record with the username and md5 of the password. If there is, the username and password is valid. Create a session value to tag the user. In your protected/private pages, check for the session tag. If it is not present, the user have not logged in yet. Divert the user to the login page. If the tag is present allow them to view the page...

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 16-07-2004, 06:35 PM
saran's Avatar
Novice Webmaster
 
Join Date: Mar 2004
Location: Bangsar
Posts: 42
Rep Power: 0
saran is on a distinguished road
Send a message via Yahoo to saran
green bean..that is more sumthing like what i want..
the prob is i dont understand...

im not a coder thats d prob...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 16-07-2004, 07:26 PM
mysticmind's Avatar
Super Moderator
 
Join Date: Jun 2001
Location: Mystic Kingdoms
Posts: 2,633
Rep Power: 142
mysticmind will become famous soon enough mysticmind will become famous soon enough
Send a message via Yahoo to mysticmind
u can search at.. www.hotscripts.com on ph section..
use i.e = "login script" or something like that.

firstly, build from scratch, modified sana, modified sini..

slow slow u code it by yourself.. the u'll become a php phreak.. muahahaha..

slow slow.. man man, later u'll gain more experience and walaaa.. u now a php coder.
__________________
Personal's Blog! - Malaysian Artist!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 16-07-2004, 08:37 PM
saran's Avatar
Novice Webmaster
 
Join Date: Mar 2004
Location: Bangsar
Posts: 42
Rep Power: 0
saran is on a distinguished road
Send a message via Yahoo to saran
thanks alot mystic mind
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 19-07-2004, 04:52 PM
Novice Webmaster
 
Join Date: Jul 2004
Location: kl
Posts: 17
Rep Power: 0
grren_bean is on a distinguished road
Maybe we can start slowly.....

Have you subscribe to a hosting plan?
You know how to create a mysql database?

Let's start with the answers, then we'll proceed....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 19-07-2004, 11:52 PM
mysticmind's Avatar
Super Moderator
 
Join Date: Jun 2001
Location: Mystic Kingdoms
Posts: 2,633
Rep Power: 142
mysticmind will become famous soon enough mysticmind will become famous soon enough
Send a message via Yahoo to mysticmind
dia dah ada www.saranx.com larrrr
and also use a php script
maybe just..
she wanna do something by itself..
__________________
Personal's Blog! - Malaysian Artist!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 20-07-2004, 08:47 AM
Novice Webmaster
 
Join Date: Jul 2004
Location: kl
Posts: 17
Rep Power: 0
grren_bean is on a distinguished road
Looks like you already have a registration and login page. Is everything working fine?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 21-07-2004, 03:51 PM
saran's Avatar
Novice Webmaster
 
Join Date: Mar 2004
Location: Bangsar
Posts: 42
Rep Power: 0
saran is on a distinguished road
Send a message via Yahoo to saran
ermmmhey guys....saranx.com is just running on cms..so i dont do any coding job much....
yeah..i know how to create mysql databases....

by the way mysticmind im not a girl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 21-07-2004, 04:51 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 768
Rep Power: 100
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
yeah saranx.com...
view from links the cms backend by FB da dot framework
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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
New Member Lee Peng Member Introductions 2 11-01-2007 03:15 PM
Hello.....tengah cari new member..saper2 nk member ngan saya adiniel17 Member Introductions 1 23-11-2006 09:48 PM
Hi..New Member of WMF sallehesa Member Introductions 7 10-10-2006 01:25 PM
leo member KKHOSTING Mamak Stall 1 19-08-2004 12:00 PM
OOP dan Database kidino Website Programming 0 07-10-2002 06:25 PM



All times are GMT +8. The time now is 05:28 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.