我們如何透過使用 mysql_fetch_assoc() 函式的 PHP 指令碼在 MySQL 表中顯示所有記錄?


為了說明這一點,我們透過使用以下示例中 mysql_fetch_assoc() 函式的 PHP 指令碼來提取名為 ‘Tutorials_tbl’ 表中的所有記錄 -

示例

<?php
   $dbhost = 'localhost:3036';
   $dbuser = 'root';
   $dbpass = 'rootpassword';
   $conn = mysql_connect($dbhost, $dbuser, $dbpass);

   if(! $conn ) {
      die('Could not connect: ' . mysql_error());
   }

   $sql = 'SELECT tutorial_id, tutorial_title, tutorial_author, submission_date FROM tutorials_tbl';

   mysql_select_db('TUTORIALS');
   $retval = mysql_query( $sql, $conn );

   if(! $retval ) {
      die('Could not get data: ' . mysql_error());
   }

   while($row = mysql_fetch_assoc($retval)) {
      echo "Tutorial ID :{$row['tutorial_id']} <br> ".
         "Title: {$row['tutorial_title']} <br> ".
         "Author: {$row['tutorial_author']} <br> ".
         "Submission Date : {$row['submission_date']} <br> ".
         "--------------------------------<br>";
   }
   echo "Fetched data successfully
";    mysql_close($conn); ?>

更新於: 2020-06-22

378 次瀏覽

開啟你的職業生涯 之旅

獲取認證資格完成這門課程

開始
廣告
© . All rights reserved.