0

我正在 PhpMyAdmin 上访问我的数据库,我所有的名字等都是正确的,但由于某种原因UserId无法正常工作。有人可以指出我正确的方向吗?

我已经尝试打印它,但没有任何显示。

<?php session_start(); 
$username = $_GET['username'];
$password = $_GET['password'];


// Create connection


$con=mysqli_connect("localhost","root","","test");

// Check connection
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}



$result = mysqli_query($con,"SELECT * FROM user2 where username='$username' and   password='$password'");

$row_cnt = mysqli_num_rows($result);
if($row_cnt >0){

while($row = mysqli_fetch_array($result)){
$UserId = $row['UserId'];
}
$sqlQuery2 = "SELECT ProductID, Name, Price, Description FROM product";

echo "Hello ".$username."<br>" .$UserId.   "<br> This is a list of products";

$result2 = mysqli_query($con,$sqlQuery2);

echo "<table border='1'>
<tr>
<th>ProductID</th>
<th>Name</th>
<th>Price</th>
<th>Description</th>
<th>View</th>
 </tr>";

while($row = mysqli_fetch_array($result2))
 {
 echo "<tr>";
 echo "<td>" . $row['ProductID'] . "</td>";
 echo "<td>" . $row['Name'] . "</td>";
 echo "<td>" . $row['Price'] . "</td>";
 echo "<td>" . $row['Description'] . "</td>";
 echo "<td><a href=\"detailview.php?ProductID=".$row['ProductID']."\"'>Detailed View</a></td>";
 echo "</tr>";
 }
echo "</table>";

mysqli_close($con);
?>
<a href="userupdatedetails.php?UserId=<?php echo $UserId ?>">Update My Details</a>
<?php } else{
echo "invalid login "; }
?>
4

1 回答 1

0

使用 var_dump($var) 查看变量中的内容

第一次检查 $result 中返回的内容,然后在使用之前检查 $UserId,然后检查是否设置了 $UserId(如果条件为假,则未设置 ou var ..)您也应该检查 $row_count

你应该
在这里缩进你的代码是你的代码重新缩进:

<?php session_start(); 
$username = $_GET['username'];
$password = $_GET['password'];


// Create connection


$con=mysqli_connect("localhost","root","","test");

// Check connection
if (mysqli_connect_errno($con))
{
    echo "Failed to connect to MySQL: " . mysqli_connect_error();
}



$result = mysqli_query($con,"SELECT * FROM user2 where username='$username' and   password='$password'");

$row_cnt = mysqli_num_rows($result);
if($row_cnt >0){

    while($row = mysqli_fetch_array($result)){
        $UserId = $row['UserId'];
    }
    $sqlQuery2 = "SELECT ProductID, Name, Price, Description FROM product";

    echo "Hello ".$username."<br>" .$UserId.   "<br> This is a list of products";

    $result2 = mysqli_query($con,$sqlQuery2);

    echo "<table border='1'>
    <tr>
    <th>ProductID</th>
    <th>Name</th>
    <th>Price</th>
    <th>Description</th>
    <th>View</th>
    </tr>";

    while($row = mysqli_fetch_array($result2))
    {
        echo "<tr>";
        echo "<td>" . $row['ProductID'] . "</td>";
        echo "<td>" . $row['Name'] . "</td>";
        echo "<td>" . $row['Price'] . "</td>";
        echo "<td>" . $row['Description'] . "</td>";
        echo "<td><a href=\"detailview.php?ProductID=".$row['ProductID']."\"'>Detailed View</a></td>";
        echo "</tr>";
    }
    echo "</table>";

    mysqli_close($con);
    ?>
    <a href="userupdatedetails.php?UserId=<?php echo $UserId ?>">Update My Details</a>
    <?php
}
else
{
    echo "invalid login ";
}
?>
于 2013-03-20T16:41:17.317 回答