当用户输入错误的用户名和密码三次时,我使用以下代码将消息发送给管理员。
请帮助我调试此代码中的问题。如何使用以下代码向管理员发送消息?
<?php
session_start();
$cookie_var_attempts=0;
if(isset($_POST['username']))
{
$uname=$_POST['username'];
$password=$_POST['password'];
mysql_connect('localhost','root','');
mysql_select_db('gps_test1');
$sql="select * from tbl_user where uname='$uname' and password='$password'";
$query=mysql_query($sql);
$no_of_rows=mysql_num_rows($query);
if($no_of_rows==1)
{
$_SESSION['username']=$uname;
header('location:track_map.php');
}
else
{
if($cookie_var_attempts>=3)
{
echo"message is sent to admin";
}
else
{
echo "Enter the correct username and password";
$cookie_var_attempts++;
}
}
}
?>