|
|
|
สอบถามเกี่ยวกับ การดึงข้อมูลจาก SQL ออกมาโชว์บนหน้าเว็บไซต์ ในรูปแบบตารางด้วยครับ |
|
|
|
|
|
|
|
เอาตารางมาด้วยครับ จะได้ลอง Query ให้ครับ
|
|
|
|
|
Date :
2014-07-31 15:01:56 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษทีครับที่ตอบช้า
แบบในรูปคือ ผมต้องการให้ข้อมูลในตารางนี้ขึ้นโชว์ บนหน้าเว็บได้ โดยกดปุ่ม ครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2014-08-06 12:50:41 |
By :
joezaok123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเขียนดู คร่าวๆ นะครับผมก็ยังไม่ได้ลอง
Code (PHP)
$objDB = mysql_select_db("$db");
$strSQL = "SELECT * FROM tb_student";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
<table width="400" border="1" align="center">
<tr>
<th width="10"> <div align="center"> No </div></th>
<th width="98"> <div align="center"> Name </div></th>
<th width="198"> <div align="center"> Surname </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult[" ID "];?></div></td>
<td><?=$objResult[" NAME "];?></td>
<td><?=$objResult[" SURNAME "];?></td>
</tr>
<?
}
?>
</table>
น่าจะประมาณนี้ครับ ลองปรับดูครับ
ปล. อย่าลืม connect ก่อนนะครับ ๕๕๕๕๕ (mysql_connect) หาอ่านได้ทั่วๆครับ
|
|
|
|
|
Date :
2014-08-06 15:00:16 |
By :
chaipop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอามาโชว์อย่างเดียวเน่อ
ตัวอย่างนะ แก้การเชื่อมต่อ เพราะอันนี้เชื่อมต่อ MSSQL
แก้ชื่อแก้อะไรเองเน่อ แต่ตารางเอามาโชว์แบบเดียวกันนี่แหละ
Code (PHP)
<?php
$serverName = "tcp:localhost,1433";
$userName = 'sa';
$userPassword = 'password';
$dbName = "thaicreate-db";
$connectionInfo = array("Database"=>$dbName, "UID"=>$userName, "PWD"=>$userPassword, "MultipleActiveResultSets"=>true);
sqlsrv_configure('WarningsReturnAsErrors', 0);
$conn = sqlsrv_connect( $serverName, $connectionInfo);
$strSQL = "SELECT * FROM customer";
$stmt = sqlsrv_query($conn, $strSQL);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?php
while($row = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC))
{
?>
<tr>
<td><div align="center"><?=$row["CustomerID"];?></div></td>
<td><?=$row["Name"];?></td>
<td><?=$row["Email"];?></td>
<td><div align="center"><?=$row["CountryCode"];?></div></td>
<td align="right"><?=$row["Budget"];?></td>
<td align="right"><?=$row["Used"];?></td>
</tr>
<?
}
?>
</table>
<?php
sqlsrv_close($conn);
?>
|
|
|
|
|
Date :
2014-08-06 15:34:53 |
By :
anue0159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับ
|
|
|
|
|
Date :
2014-08-06 18:08:28 |
By :
joezaok123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|