信息没有显示我的MySQL数据库

时间:2016-07-15 01:56:36

标签: php html mysql

我试图从sNumber打开一个新的php页面,并在sNumber的学生档案页面上显示学生表中的数据。但我无法检索数据,它正确的错误。任何帮助将不胜感激。感谢

studentlist.php

 <div class="memtable">
        <?php
        $reload = $_SERVER['PHP_SELF'] . "?tpages=" . $tpages;
        echo '<div class="pagination"><ul>';
        if ($total_pages > 1) {
            echo paginate($reload, $show_page, $total_pages);
        }
        echo "</ul></div>";
        // display data in table
        echo "<table class='table table-bordered'>";
        echo "<thead><tr><th>Last Name</th> <th>First Name</th> <th>School</th> <th>Snumber</th></tr></thead>";
        // loop through results of database query, displaying them in the table
        for ($i = $start; $i < $end; $i++) {
            // make sure that PHP doesn't try to show results that don't exist
            if ($i == $total_results) {
                break;
            }

                // echo out the contents of each row into a table
                $lastName = "<a href = 'studentprofile.php?id= " .mysql_result($result, $i, 'sNumber'). "'>" . mysql_result($result, $i, 'lastName') . "</a>";

                echo "<tr " . $cls . ">";
                echo '<td>' . $lastName . '</td>';
                echo '<td>' . mysql_result($result, $i, 'firstName') . '</td>';
                echo '<td>' . mysql_result($result, $i, 'school') . '</td>';
                echo '<td>' . mysql_result($result, $i, 'sNumber') . '</td>';
                echo "</tr>";
        }
        // close table>
        echo "</table>";
        // pagination
        ?>
    </div>

studentprofile.php

 <?php

  include('phpdocs/connect.inc.php');
  include('header.php');


   if ( isset( $_GET[ "sNumber" ] ) )
   $student_sNumber = $_GET['sNumber'];

    $getStudentInfo = " SELECT sNumber FROM student WHERE student.sNumber = " . $student_sNumber;
 ?>

 <!DOCTYPE html>
  <html>
  <head>
   <title>Student</title>
   <link href="css/style.css" rel="stylesheet" type="text/css">
   </head>
   <body>
    <div class="transoverlay">

  <?php
    if ($result = mysql_query($getStudentInfo)) {
    /* fetch associative array */
    while ($row = mysql_fetch_assoc($result)) {

        echo "<h1 class='tv'>" . $row["sNumber"]. ", ". $row['firstName']."</h1>";
    }

    mysql_free_result($result);

}else{

    echo "<div class='tv'>Student Data could not be listed. </div>";
}



   ?>

    <hr color="#1a1a1a">


  </div>

  </body>
  <?php include('footer.php');?>
  </html>

1 个答案:

答案 0 :(得分:2)

网址使用id,但您检查sNumber会更改其中一个

您需要在查询中引用学生编号作为字符串

$getStudentInfo = "SELECT sNumber FROM student WHERE student.sNumber ='". $student_sNumber."'";