วันจันทร์ที่ 25 พฤศจิกายน พ.ศ. 2556

คำสั่งในการแสดงข้อมูลจากฐานข้อมูล

<?php
$link = mysql_pconnect( "localhost","root","1234") or die(mysql_error());
mysql_select_db("ชื่อฐานข้อมูล",$link) or die(mysql_error());
mysql_query("SET NAMES UTF8");
?>
<?php
$sql="select * from ชื่อตาราง order by ใส่ชื่อฟิลด์  asc";
$result=mysql_query($sql) or die(mysql_error());
$num=mysql_num_rows($result);
echo "จำนวนทั้งหมด ".$num." คน<br>";
?>
<table width="554" border="1" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="51"><div align="center">ลำดับ</div></td>
    <td width="89"><div align="center">รหัส</div></td>
    <td width="170"><div align="center">ชื่อ</div></td>
   </tr>
  <?php
  $i=0;
  while($rs=mysql_fetch_array($result)){
  $i++;
  extract($rs);

  ?>
  <tr>
    <td><div align="center"><?php echo $i; ?></div></td>
    <td><div align="left"><?php echo $id; ?> </div></td>
    <td><div align="left"><?php echo $name; ?> </div></td>
    </tr><?php }?>
</table>

5 ความคิดเห็น:

  1. http://weethaidatabase.blogspot.com/

    ส่งสอบสร้างฐานข้อมูล

    ตอบลบ
  2. http://tangkwa007.blogspot.com/

    ส่งสอบสร้างฐานข้อมูล

    ตอบลบ
  3. http://jalayjamie.blogspot.com/

    ส่งเรื่องสอบฐานข้อมูล

    ตอบลบ
  4. http://fahfat.blogspot.com/

    ส่งเรื่องสอบฐานข้อมูล

    ตอบลบ
  5. http://sunrung.blogspot.com/

    ส่งเรื่องสอบฐานข้อมูล

    ตอบลบ