doulan6150 2013-10-20 16:25
浏览 48
已采纳

PHP 5.4.12:未定义的索引错误

Hey there stackoverflow community!

I'm currently working on a inter-game + inter-server project but I'm getting stuck on my authentication system. When I login with some correct details I get the error

 Notice: Undefined index: myusername in C:\wamp\www
ew\panel.php on line 8
 Notice: Undefined index: mypassword in C:\wamp\www
ew\panel.php on line 9

 Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in C:\wamp\www
ew\panel.php on line 13

I dont know how to fix this so what i'm asking is How do i fix this?

This is the code I am using to check the login details:

<?php

ob_start();
$host="localhost"; // Host name
$username="mindfulbank"; // Mysql username
$password=""; // Mysql password
$db_name="mindful_bank"; // Database name
$tbl_name="members"; // Table name

// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("Database cannot connect securely, please check back later!");
mysql_select_db("$db_name")or die("Database Cannot Be Selected");

// Define $myusername and $mypassword
$myusername=$_POST['myusername'];
$password=$_POST['mypassword'];
$sha1password=sha1($password);
$mypassword=md5($sha1password);

// To protect MySQL injection (more detail about MySQL injection)
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);

$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
$result=mysql_query($sql);

// Mysql_num_row is counting table row
$count=mysql_num_rows($result);

// If result matched $myusername and $mypassword, table row must be 1 row

if($count==1){

// Register $myusername, $mypassword and redirect to file "login_success.php"
$_SESSION['myusername']=$myusername;
$_SESSION['mypassword']=$mypassword;
session_start();
header("location:panel.php");
}
else {
echo "Wrong Username or Password";
}

ob_end_flush();
?>

and the page that these errors acctually causes the error:

<?php
session_start();

if(isset($_SESSION['myusername'])){
header("location:logout.php");
}

$myusername=$_SESSION['myusername'];
$mypassword=$_SESSION['mypassword'];
$con=mysqli_connect("localhost","mindfulbank","","mindful_bank");
$result = mysqli_query($con,"SELECT level FROM members WHERE password = '$mypassword' and username = '$myusername'");
$fname = mysqli_query($con,"SELECT name FROM members WHERE password = '$mypassword' and username = '$myusername'");
while($row = mysqli_fetch_array($result))
{  
  if($row['admin'] == 1){
   require 'panel/admindash.php';
 }
 else
 {
   require 'panel/userdash.php';
}
}
?>
  • 写回答

3条回答 默认 最新

  • douhang1913 2013-10-20 16:33
    关注

    Update the connection on the script used to check login details to mysqli as mysql is depreciated.

    Once this is done change the mysql_real_escape_string($myusername); functions to mysqli_real_escape_string($your_connection, $myusername);.

    mysqli_real_escape_string expects a db connection as required parameter.

    http://php.net/manual/en/mysqli.real-escape-string.php

    Then add session_start(); to the top of the script used to check login details!

    http://php.net/manual/en/function.session-start.php

    Hope this helps

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题