|
|
|
ทำ SQL Server Search Record Paging/Pagination (mssql) อยากให้กดปุ่ม Export ออกเป็น Excel ค่ะ |
|
|
|
|
|
|
|
คุณจะต้องออกแบบหน้าจออีกหน้าหนึ่ง ที่แสดงข้อมูลเฉพาะสิ่งที่ต้องการครับ
|
|
|
|
|
Date :
2012-10-03 12:05:29 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในหน้าจอ App มี Error หรือเปล่าครับ
|
|
|
|
|
Date :
2012-10-03 14:13:50 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ COM ของ Excel มันมีข้อจำกัดเยอะครับ
|
|
|
|
|
Date :
2012-10-03 15:26:59 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำตามนี้แล้ว ถ้า select * from หมดตารางข้อมูลมันมาให้
แต่พอลงใส่ where เพื่อ ดึงค่าจาก dropdown อีกหน้านึงมา มันไม่แสดงค่าให้
ลองทั้ง get ทั้ง post ก็ออกเป็นค่าว่าง ยังไง ดี ๆ
Code (PHP)
<?
header("Content-type: application/vnd.ms-excel");
// header('Content-type: application/csv'); //*** CSV ***//
header("Content-Disposition: attachment; filename=testing.xls");
?>
<html>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$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>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2012-10-04 14:40:03 |
By :
Narumol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|