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条)

报告相同问题?

悬赏问题

  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 MATLAB四叉树处理长方形tif文件
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题
  • ¥15 使用Java milo连接Kepserver服务端报错?
  • ¥15 用ADS设计一款的射频功率放大器
  • ¥15 怎么求交点连线的理论解?
  • ¥20 软件开发方法学习来了