dongqian9013 2017-07-06 16:19
浏览 5
已采纳

按ID PHP选择数据

I have trouble to select a set of specific data using ID from the database. For example, employee one has a unique id of e000000001, when I click the view button in the index will lead to employee detail page which shows the detail of that particular employee instead of all the employees' detail. Thank you.

//from index.php page

    <?php
    require_once 'db/dbEmpList.php';
    $sqlStr = "SELECT * FROM employees;";

    $result = $connection->query($sqlStr);

    if ($result->num_rows > 0) {



        echo "<table class='table table-sm'><thread><tr><th>Full Name</th><th>Employee ID</th><th>Position</th><th>View Employee's Details</th></tr>";
        while ($row = $result->fetch_assoc()) {

            echo "<tr><td>" 
            . $row["empName"]. "</td><td>" 
                    . $row["empID"]. "</td><td>" 
                    . $row["position"]. "</td>" 
                    . "<td> <a href='employeedetail.php?id={$row["empID"]}'>View</a>"
                    . "</td></tr>";
        }
    }

// from employee page

require_once 'db/dbEmpDetail.php'; 
$sql = "SELECT * FROM employees where empID = '{$row["empID"]}' "; 
$result = mysqli_query($connection, $sql); 
if (mysqli_num_rows($result)) { 
    while ($row = mysqli_fetch_assoc($result)) { 
        echo '<tr>' .'<td>' .$row["empName"].'</td>'.'<td>'. $row["position"].'</td>' .'<td>'.$row["empNRIC"].'</td>' .'<td>'.$row["empID"].'</td>' .'<td>'.$row["empEmail"].'</td>' .'<td>'.$row["empPwd"].'</td>' . "</tr>";
    } 
} else { 
    echo "0 results";
} 
mysqli_close($connection); 
?>
  • 写回答

1条回答 默认 最新

  • dtvpl739577 2017-07-06 16:31
    关注

    // FROM EMPLOYEE PAGE

    The way you retrieve URL query string is wrong. You should be using $_GET to get the query string from URL. In your case it should be $_GET['id']. See the code below:

    require_once 'db/dbEmpDetail.php';
    $employeeid = trim(mysqli_real_escape_string($_GET['id'])); 
    $sql = "SELECT * FROM employees where empID = '".$employeeid."' "; 
    $result = mysqli_query($connection, $sql); 
    if (mysqli_num_rows($result)) { 
        while ($row = mysqli_fetch_assoc($result)) { 
            echo '<tr>' .'<td>' .$row["empName"].'</td>'.'<td>'. $row["position"].'</td>' .'<td>'.$row["empNRIC"].'</td>' .'<td>'.$row["empID"].'</td>' .'<td>'.$row["empEmail"].'</td>' .'<td>'.$row["empPwd"].'</td>' . "</tr>";
        } 
    }
    else { 
        echo "0 results";
    } 
    mysqli_close($connection); 
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥30 vue+element根据数据循环生成多个table,如何实现最后一列 平均分合并
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备