Home  >  Article  >  Backend Development  >  php+mysql implements authentication code_PHP tutorial

php+mysql implements authentication code_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:40:01998browse

Copy code The code is as follows:

$uname=$_POST["username"];
$pwd=$_POST["password"];
$link = mysql_connect('localhost', 'root', '123456')
or die('Could not connect: ' . mysql_error());
mysql_select_db('ruida') or die('Could not select database');
//Execute SQL query
$query = 'SELECT * FROM user';
$result = mysql_query($query ) or die('Query failed: ' . mysql_error());
while($row=mysql_fetch_array($result)){
if($uname==$row['username'] && $pwd= =$row['password'])
{
//Page jump
}
else
echo 'error!';}
// Release the result set
mysql_free_result($result);
//Close the connection
mysql_close($link);
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321444.htmlTechArticleCopy the code as follows: ?php $uname=$_POST["username"]; $pwd=$_POST[ "password"]; $link = mysql_connect('localhost', 'root', '123456') or die('Could not connect: ' . mysql_error(...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn