PHP匯出資料庫的表資料

來源:互聯網
上載者:User

標籤:匯出   array   ima   birt   query   nec   border   from   span   

 

 1 <?php 2 @mysql_connect("localhost","root","123456")or die;    //連結資料庫 3 @mysql_select_db("test1")or die;    //選擇資料庫 4 $query = @mysql_query("select * from yonghu")or die;    //查詢‘yonghu’表中的所有記錄 5 echo "<table border=1><tr align=center><th>使用者名稱</th><th>性別</th><th>出生日期</th><th>郵箱</th></tr>"; 6 $n=0; 7 while ($row = mysql_fetch_array($query))    //遍曆‘yonghu’表中的資料,並形成數組 8 { 9     $username = $row[‘username‘];    //使用鍵擷取數組中對應的值10     $sex = $row[‘sex‘];11     $birth = $row[‘birth‘];12     $email = $row[‘email‘];13     echo "<tr>";14     echo "<td>{$username}</td>";    //按照資料表的列在表格裡輸出對應資料15     echo "<td>{$sex}</td>";16     echo "<td>{$birth}</td>";17     echo "<td>{$email}</td>";18     echo "</tr>";19     $n++;20 /*    if($n>14){21         return;22     }*/23 }    24 echo "<table>";25 ?>

 

PHP匯出資料庫的表資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.