簡體   English   中英

顯示數據庫中的每個數據

[英]showing each data from the database

在此處輸入圖片說明

我已經顯示了數據庫中的名稱列表,但是問題是我不知道如何顯示每個用戶的信息,一旦我單擊列表中的某個用戶,他/他的信息就會出現。

html

<div class="member_list">
    <div class="list-unstyled">
        <?php require_once "../function/admin_function.php"; ?>
    </div>
</div>

<div class="information" id="table_information">
    <table class="table_information">
        <tr>
            <th colspan="4">Information</th>
        </tr>
        <tr>
            <th>lastname</th>
            <th>address</th>
            <th>contact</th>
        </tr>
        <tr>
            <td>
                <?php include "../function/information_function.php"; ?>
            </td>
        </tr>
    </table>
</div>

information_function-PHP

<?php 
include "../connection/connection.php";

$sql = "SELECT * FROM registration";
$result = mysqli_query($dbconn, $sql);

while ($row = mysqli_fetch_array ($result)){
    echo "<tr>";
    echo "<td>" . $row['lname'] . "</td>";
    echo "<td>" . $row['address'] . "</td>";
    echo "<td>" . $row['contact'] . "</td>";
    echo "</tr>";
}
?>

用戶列表-PHP

<?php 
include "../connection/connection.php";

$sql = "SELECT * FROM registration";
$result = mysqli_query ($dbconn, $sql);

while($row = mysqli_fetch_array ($result)) {
    echo "<ul class='table_php'>";
    echo "<li>";
    echo "<a href='#table_information' class='friends_link'>";                  
    echo "<span class='chat-img pull-left'>";
    echo "<img src='user.png' class='img-circle'>"; 
    echo "</span>" . $row['lname'] . "</a>";
    echo "</li>";           
    echo "</ul>";
}
?>

將代碼放入函數中,然后在include語句之后調用該函數。

// information_function //

<?php 
 include "../connection/connection.php";
function get_information(){
 $sql = "SELECT * FROM registration";
 $result = mysqli_query($dbconn, $sql);

  while ($row = mysqli_fetch_array ($result)){


  echo "<tr>";
  echo "<td>" . $row['lname'] . "</td>";
  echo "<td>" . $row['address'] . "</td>";
  echo "<td>" . $row['contact'] . "</td>";
  echo "</tr>";

  }
}
  ?>

// html //

<div class="member_list">
  <div class="list-unstyled">
    <?php require_once "../function/admin_function.php"; ?>
  </div>
 </div>

<div class="information" id="table_information">
  <table class="table_information">
   <tr>
    <th colspan="4">Information</th>
   </tr>
   <tr>
    <th>lastname</th>
    <th>address</th>
    <th>contact</th>
   </tr>


     <?php include "../function/information_function.php"; ?>
 <?php get_information(); ?>

  </table>
 </div>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM