|
| ||||||||||
| Tags: email, login system, php, website |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to create Login System for Simple Website
Registration - username, password, email notification, country_name & full name conformation email is sent with username and pass (confirm link should be included if possible) login - user logs into another part of the website forgoten password - user enters email address registered with to receive their login information Any Help would be Highly Apreciated. |
|
#2
| |||
| |||
| Re: How to create Login System for Simple Website
If you wanted to create your Website in PHP then here are the details of your Website design.first you have to make 5 php files called common.php-this is where all the info of what to do when registering and logining in is. register.php-where your users will register. login.php-where your users will log in. index.php-where your users will be redirected to after they login, you can put a link to your website here. And logout.php-This is where your users will be redirected to when they log out |
|
#3
| ||||
| ||||
| Re: How to create Login System for Simple Website
To create simple login system you need to know a little of MySQL and PHP, it is very easy to use. First, you will need MySQL, XAMMP installed and I use PHPmyADMIN for accessing my databases. They are free for download; just search for them online. You also need to create a database in your MySQL. And as you proceed, remember that linux server file names are always case sensitives. LOGIN.PHP is not equal to login.php like on WINDOWS servers. Run this SQL command in your MySQL database (you must have one): Code: CREATE TABLE `users` ( `id` int(3) NOT NULL auto_increment, `login` varchar(8) default NULL, `password` varchar(8) default NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=3 ; This will create the table that will record the usernames and passwords. PHP Code: Code: <form name="login_form" method="post" action="log.php?action=login"> Login: <input type="text" name="user"><BR> Password: <input type="password" name="pwd"><BR> <input type="submit"> </form> PHP Code: |
|
#4
| |||
| |||
| Re: How to create Login System for Simple Website Logging in Users To allow users to login you should build a web form, after validation of the form you can check if the user credentials are right with $user->_checkLogin('username', 'password', remember). Username and password should not be constants of course, remember is a boolean flag which if set will send a cookie to the visitor to allow later automatic logins. Code: function _checkLogin($username, $password, $remember) {
$username = $this->db->quote($username);
$password = $this->db->quote(md5($password));
$sql = "SELECT * FROM member WHERE " .
"username = $username AND " .
"password = $password";
$result = $this->db->getRow($sql);
if ( is_object($result) ) {
$this->_setSession($result, $remember);
return true;
} else {
$this->failed = true;
$this->_logout();
return false;
}
} |
|
#5
| |||
| |||
| Re: How to create Login System for Simple Website I need a login with the following: Registration: where I make everyones accounts and know when they have been on Rememberance:where the site remembers what page they were on last Log-In and Log-Outwhere the site makes them enter a username and password to access the account and will have a logout icon/hyperlink Forgotten Passwordwhere i have told the site the users emails and it will send them their password if nessacery also it needs to be done using php files and mysql Thanks for any help ![]() p.s. can someone give me a link to a fully operational mysql program ready to download onto linux Last edited by Tenter25 : 13-04-2009 at 11:19 PM. |
|
#6
| |||
| |||
| Re: How to create Login System for Simple Website
got good stuff on this site |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to create Login System for Simple Website" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to create a simple logo in Illustrator Tool | L 4 Life | Windows Software | 4 | 17-01-2011 07:01 AM |
| Simple Website Templates | CrazeD | Windows Software | 3 | 30-10-2009 10:07 AM |
| How to create simple Chat page using PHP | Guns-n-Roses | Software Development | 3 | 10-09-2009 02:11 PM |
| Create All in one system utility Software with simple batch programming | MindSpace | Software Development | 0 | 07-03-2009 12:39 PM |
| simple login form in visual basic 6? | hariharan_00 | Software Development | 3 | 28-10-2006 08:51 PM |