|
|
|
รบกวนแนะนำการรวม cell ให้ด้วยคะ หนูอยากให้มันออกมาเหมือนตัวอย่างคะ ตอนนี้มัน Show ซ้ำ ๆ กันคะ |
|
|
|
|
|
|
|
รบกวนแนะนำการรวม cell ให้ด้วยคะ หนูอยากให้มันออกมาเหมือนตัวอย่างคะ ตอนนี้มัน Show ซ้ำ ๆ
Code (PHP)
<?
include "Connect.php";
header("Content-type: application/vnd.ms-excel");
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
$datein= $_POST['date'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>REPORT</title>
</head>
<body>
<?
$strSQL = "Select * From Payment where datereceipt = '$datein'";
//where po_partial.GLDate ='$dateStart'
//echo $strSQL ;
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="50%" border="1" >
<tr>
<th colspan='19'> <div align="left"><strong>REPORT AS OF <?=$_POST['date']?></strong></div></th>
</tr>
<tr>
<th> <div align="center"><strong>ลำดับที่</strong></div></th>
<th> <div align="center"><strong>สาขา</div></th>
<th> <div align="center"><strong>ชื่อสาขา</div></th>
<th> <div align="center"><strong>Description</div></th>
<th> <div align="center"><strong>เลขที่ใบสั่งซื้อ</div></th>
<th> <div align="center"><strong>วันที่<strong></div></th>
<th> <div align="center"><strong>จำนวนทั้งหมด<strong></div></th>
<th> <div align="center"><strong>Code<strong></div></th>
<th> <div align="center"><strong>Code name<strong></div></th>
<th> <div align="center"><strong>ครั้งที่<strong></div></th>
<th> <div align="center"><strong>จำนวนเงิน<strong></div></th>
</tr>
<?
$i=1;
while($objResult = mysql_fetch_array($objQuery)){
?>
<tr>
<td><div align="center"><?=$i;?></div></td>
<td><div align="center"><?=$objResult["BrcCode"];?></div></td>
<td><div align="center"><?=$objResult["Description"];?></div></td>
<td><div align="center"><?=$objResult["Desc1"];?></div></td>
<td><div align="center"><?=$objResult["INVNo"];?></div></td>
<td><div align="center"><?=$objResult["Date"];?></div></td>
<td><div align="center"><?=number_format($objResult["Amt"],2,".",',');?></div></td>
<td><div align="center"><?=$objResult["Code"];?></div></td>
<td><div align="left"><?=$objResult["Name"];?></div></td>
<td><div align="center"><?=$objResult["Insttime"];?></div></td>
<td><div align="left"><?=$objResult["per"];?></div></td>
<td><div align="center"><?=number_format($objResult["THB"],2,".",',');?></div></td>
</tr>
<?
$i++;
}
?>
</table>
</table>
<p> </p>
<?php
$filename = $_POST['date'];
header("Content-Disposition: attachment; filename=Construction Work: $filename.xls");
?>
</body>
</html>
รบกวนด้วยคะ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-05-19 09:09:17 |
By :
guest |
View :
657 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$tmpBrcCode = "";
$i=1;
while($objResult = mysql_fetch_array($objQuery)){
if($tmpBrcCode != $objResult["BrcCode"])
{
$tmpBrcCode = $objResult["BrcCode"];
}
?>
<tr>
<td><div align="center"><?=$i;?></div></td>
<td><div align="center"><?=$tmpBrcCode;?></div></td>
<td><div align="center"><?=$objResult["Description"];?></div></td>
<td><div align="center"><?=$objResult["Desc1"];?></div></td>
<td><div align="center"><?=$objResult["INVNo"];?></div></td>
<td><div align="center"><?=$objResult["Date"];?></div></td>
<td><div align="center"><?=number_format($objResult["Amt"],2,".",',');?></div></td>
<td><div align="center"><?=$objResult["Code"];?></div></td>
<td><div align="left"><?=$objResult["Name"];?></div></td>
<td><div align="center"><?=$objResult["Insttime"];?></div></td>
<td><div align="left"><?=$objResult["per"];?></div></td>
<td><div align="center"><?=number_format($objResult["THB"],2,".",',');?></div></td>
</tr>
<?
$tmpBrcCode = $objResult["BrcCode"];
$i++;
}
?>
เขียนให้ดู Column แรกครับ
|
|
|
|
|
Date :
2014-05-19 10:22:11 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค้าาาาาา หนูขอเทสก่อนนะคะ
|
|
|
|
|
Date :
2014-05-19 11:08:28 |
By :
guest |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|