|
|
|
ใครมีวิธีแบ่งหน้าแบบ sqlserver 2008 + sqlsrv บ้างครับหาตามเว็บนอกไม่มีเลย หรือเค้าไม่ใช้กันหว่า |
|
|
|
|
|
|
|
หลักการเดียวกันครับ แตกแต่างกันที่ฟังก์ชั่นเท่านั้นเอง
ลองเขียนดูหรือยังครับ..
|
|
|
|
|
Date :
2014-04-08 16:10:31 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$serverName = "tcp:bc6hela9fr.database.windows.net,1433";
$userName = 'thaicreate-user@bc6hela9fr';
$userPassword = 'password@123';
$dbName = "thaicreate-db";
$conn = new PDO("sqlsrv:server=$serverName ; Database = $dbName", $userName, $userPassword);
$strSQL = "SELECT * FROM customer";
$stmt = $conn->prepare($strSQL);
$stmt->execute();
?>
<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>
<?
$arrValues = $stmt->fetchAll(PDO::FETCH_ASSOC);
foreach ($arrValues as $result){
?>
<tr>
<td><div align="center"><?=$result["CustomerID"];?></div></td>
<td><?=$result["Name"];?></td>
<td><?=$result["Email"];?></td>
<td><div align="center"><?=$result["CountryCode"];?></div></td>
<td align="right"><?=$result["Budget"];?></td>
<td align="right"><?=$result["Used"];?></td>
</tr>
<?
}
?>
</table>
<?
$conn = null;
?>
|
|
|
|
|
Date :
2014-04-09 09:24:29 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2014-04-11 13:43:17 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|