Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1PHP Login Empty PHP Login Fri Oct 14, 2011 1:36 am

des

des
Achiever
Loading
Wanting to learn how to make a login on PHP? Yet you still can't find out? So you Google it. Google just links you to the codes, but you don't know how it works. Let's go step by step.

You'll need to have the following projects done:
1. main_login.php
2. checklogin.php
3. login_success.php


Steps
1. Create table "members" in database "test".
2. Create file main_login.php.
3. Create file checklogin.php.
4. Create file login_success.php.
5. Create file logout.php


Create table "members"
Code:
CREATE TABLE `members` (
`id` int(4) NOT NULL auto_increment,
`username` varchar(65) NOT NULL default '',
`password` varchar(65) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Dumping data for table `members`
--

INSERT INTO `members` VALUES (1, 'Desu', 'password69');

Create file main_login.php
Code:
<table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="checklogin.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>Member Login </strong></td>
</tr>
<tr>
<td width="78">Username</td>
<td width="6">:</td>
<td width="294"><input name="myusername" type="text" id="myusername"></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input name="mypassword" type="text" id="mypassword"></td>
</tr>
<tr>
<td> </td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</td>
</form>
</tr>
</table>

Create file checklogin.php
This tutorial will be continued.

2PHP Login Empty Re: PHP Login Fri Oct 14, 2011 1:38 am

Marcus

Marcus
Contributor
Loading
PHP is annoying.

3PHP Login Empty Re: PHP Login Fri Oct 14, 2011 3:13 am

Z3N0C1D3

Z3N0C1D3
Undertaker
Loading
Sounds good.Thanks for the tutorial Desu +rep

Sponsored content


Loading

View previous topic View next topic Back to top  Message [Page 1 of 1]

Related topics

Permissions in this forum:
You cannot reply to topics in this forum