【问题标题】:Changing variable改变变量
【发布时间】:2018-01-18 03:16:24
【问题描述】:

这是我的闹鬼代码。

ini_set("display_errors", true);
ini_set("html_errors", false); 
require "conn.php";
echo "debug 1";
$stmt2 = $conn->prepare("SELECT * FROM UserData WHERE username = ?");
$stmt2->bind_param('s',$username);
//$username = $_POST["username"];
$username ="netsgets";
$stmt2->execute();
$stmt2->store_result(); 
if ($stmt2->num_rows == 0){ // username not taken
echo "debug 2.5";

die;
}else{
// prepare query
$stmt=$conn->prepare("SELECT * FROM UserData WHERE username = ?");
// You only need to call bind_param once
$stmt->bind_param('s',$username);
$username = "netsgets";
// execute query
$stmt->execute(); 
$stmt->store_result();  
// bind variables to result
$stmt->bind_result($id,$dbUser,$dbPassword,$Type1,$Type2,$Type3,$Type4,$Type5);
//fetch the first result row, this pumps the result values in the bound variables

if($stmt->fetch()){
    echo 'result is ' . $Type1, $Type2,$Type3,$Type4,$Type5;
}


//var_dump($query2);
echo "hi";

echo "debug 2";



echo "debug 2.7";

    if ($Type1 == "empty"){

        echo "debug 3";
        $sql11 = $conn->prepare("UPDATE UserData SET likedOne=? WHERE username=?");
        $sql11->bind_param('ss',$TUsername,$Username);
//      $TUsername = $_POST["TUsername"];
//      $Username = $_POST["username"];
        $TUsername = "test";
        $Username = "netsgets";
        $sql11->execute();



    } 
}

这就是它返回的内容(回声)。

Connected successfullydebug 1result is empty empty empty empty empty hidebug 2debug 2.7

如您所见,变量 Type1、Type2、Type3、Type4、Type5 都等于“空”。 出于某种原因,如您所见,if 语句不认为它是“空的”,因为它没有回显“调试 3”。什么.....(也没有错误。)

【问题讨论】:

  • 你没有在任何地方声明 $Type1 等。
  • $stmt->bind_result($id,$dbUser,$dbPassword,$Type1,$Type2,$Type3,$Type4,$Type5);
  • 不是吗?
  • 加上如果是这样,为什么我可以打印它的价值?
  • 您必须为这些变量赋值。 $Type1 = "某事"; //等等。

标签: php mysql


【解决方案1】:

如果这段代码...

echo 'result is ' . $Type1, $Type2,$Type3,$Type4,$Type5;

从字面上产生这个输出......

结果为空空空空空空

每个“空”之间有空格,那么显然您数据库中的Type* 值都是"empty "" empty" 或其他带有前导/尾随空格的组合。

你会想用

做比较
trim($Type1) == 'empty'

此外,如 cmets 中所述,切勿SELECT *bind_result 结合使用。您应该始终明确选择的列以及它们出现的顺序,例如

SELECT id, dbUser, dbPassword, Type1, Type2, Type3, Type4, Type5 FROM ...

【讨论】:

  • 当然,直到您添加或删除列或您的数据库决定更改顺序
猜你喜欢
  • 2023-02-04
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多