
Hi,
I am learning PHP. I have some dilemma how to create a Login Form and make connectivity with HTML page using PHP and MYSQL. Is there any body can guide me or provides any reference link for referring. Please feel free to suggestion.
Thanks,

Hi,
For any website or Web portal there must be a login option for secure your data. Each and Every website create login connectivity for MYSQL Database with PHP OR HTML Form page to protecting their data. Please Visit below link
http://www.roseindia.net/tutorial/php/phpdatabase/PHP-MySQL-Login-Form.html
Thanks,

i have made a login page connected with css
first code is of login.php and second one is of login.css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link rel="stylesheet" type="text/css" href="login.css" />
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<div align="center"></div>
<div id="mainpage"></div>
<div id="banner"><div id="logo"><img src="globe.jpg" width="100" height="78" /></div>
<h1>Welcome to GLOBE</h1>
<align="center">Connecting World,Connecting People
</div>
<body>
<table>
<form name "frm" action="loginvalue.php" method="post">
<tr>
<td>Email Id</td>
<td><input type="text" name="txtname" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="txtpass" /></td>
</tr>
<tr>
<td><input type="submit" value="Login" name="submit" /></td>
</tr>
<tr>
<td>Not a user</td>
<td><a href="maildemo.php">Sign Up here for new account</a></td>
</tr>
</form>
</table>
<div id="footer">
<div id="footerleft">©All Rights Reserved</div>
<div id="footerright">Developed by PHP Developers</div>
</div>
</body>
</html>
LOGIN.CSS
body
{
background-color:#066;
}
#mainpage
{
margin-top:5px;
}
#banner
{
background-color:#099;
text-align:center;
}
#logo
{
float:left;
width:100px;
height:78px;
}
#footer
{
background-color:#0CC;
}
#footerleft
{
float:left;
text-align:left;
width:50%;
background-color:#0CC;
}
#footerright
{
float:right;
text-align:right;
width:50%;
background-color:#0CC;
}
this whole code u have to put in one folder i.e Xampp->htdocs and even the logo should be also their ...
thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.