รบกวนช่วยแนะนำหนูด้วยคะ อยากจะให้ข้อมูลมันสรุปออกมาแบบตัวอย่างข้างล่างนะคะ ต้องนับยังไงคะ ช่วยแนะนำด้วยคะ
Code (PHP)
<?
$i=1; $type = array();
while($objResult = mysql_fetch_array($objQuery))
{
if(!isset($type[$objResult["type"]])) $type[$objResult["type"]] = 0; $type[$objResult["type"]]++;
?>
Date :
2014-02-17 21:21:51
By :
itpcc
ขอบคุณคะ หนูลองเอาไปเพิ่มแล้วไม่ขึ้นคะ อยากให้ข้างล่างมันสรุปแบบนี้ในรูปตามสีเขียวละคะ ทำยังไงคะ คือหนูยังไม่เก่งนะคะ
Date :
2014-02-17 22:26:15
By :
แอน
มาวิธีแบบบ้านๆ เลย 555 ได้รึเปล่าน้า ??
Code (PHP)
<?
$strSQL = "SELECT*
From invoice
Where apdirect.Trans_Date = '$dateStart' ";
$strSQL1 = $strSQL." AND type = 'A'";
$res1 = mysql_query($strSQL1) or die (mysql_error());
$countrow = mysql_num_rows($res1);
echo "Type A = " .$countrow;
$strSQL2 = $strSQL." AND type = 'B'";
$res2 = mysql_query($strSQL2) or die (mysql_error());
$countrow = mysql_num_rows($res2);
echo "Type B = " .$countrow;
$strSQL3 = $strSQL." AND type = 'C'";
$res3 = mysql_query($strSQL3) or die (mysql_error());
$countrow = mysql_num_rows($res3);
echo "Type C = " .$countrow;
$strSQL4 = $strSQL." AND type = 'D'";
$res4 = mysql_query($strSQL4) or die (mysql_error());
$countrow = mysql_num_rows($res4);
echo "Type D = " .$countrow;
?>
ประวัติการแก้ไข 2014-02-17 22:46:16 2014-02-17 22:46:47 2014-02-17 22:48:18
Date :
2014-02-17 22:45:12
By :
champkung226
ลองดูนะครับ ผมเองก็มือใหม่(อย่าเชื่อผมนะ ผมมั่ว อิอิ)
ถ้าทำวิธีไหนได้บ้าง ช่วยกลับมาบอกหน่อยนะครับ
Code (PHP)
<?
include "Connect.php";
//include "function.php";
header("Content-type: application/vnd.ms-excel");
// header('Content-type: application/csv'); //*** CSV ***//
header("Content-Disposition: attachment; filename=SummaryReport.xls");
$dateStart = $_POST['indate'];
//$dateEnd = $_POST['enddate'];
?>
<!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>Summary Report</title>
</head>
<body>
<?
$strSQL = "SELECT * From invoice
Where apdirect.Trans_Date = '$dateStart' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="50%" border="1" >
<tr>
<th colspan='11'> <div align="center"><strong>Summary Report </strong></div></th>
</tr>
<th colspan='11'> <div align="center"><strong>รายงานวันที่ <?=$_POST['indate']?></strong></div></th>
</tr>
<tr>
<th> <div align="center"><strong>No. </strong></div></th>
<th> <div align="center"><strong>Ticket No.</strong></div></th>
<th> <div align="center"><strong>Date</strong></div></th>
<th> <div align="center"><strong>Code</strong></div></th>
<th> <div align="center"><strong>Name</strong></div></th>
<th> <div align="center"><strong>Inv No.</strong></div></th>
<th> <div align="center"><strong>Inv Date</strong></div></th>
<th> <div align="center"><strong>Amount</strong></div></th>
<th> <div align="center"><strong>vat</strong></div></th>
<th> <div align="center"><strong>Type</strong></div></th>
</tr>
<?
$i=1;
$arr = array(); // สร้างตัวแปร array
while($objResult = mysql_fetch_array($objQuery)){
array_push($arr, $objResult["type"]); // เพิ่มข้อมูลให้ตัวแปร array
?>
<tr>
<td><div align="center"><?=$i;?></div></td>
<td><div align="center"><?=$objResult["Ticket_No"];?></div></td>
<td><div align="center"><?=$objResult["date"];?></div></td>
<td><div align="left"><?=$objResult["Code"];?></div></td>
<td><div align="left"><?=$objResult["Name"];?></div></td>
<td><div align="center"><?=$objResult["inv_no"];?></div></td>
<td><div align="center"><?=$objResult["Inv_Date"];?></div></td>
<td><div align="right"><?=number_format($objResult["Amount"],2,".",',');?></div></td>
<td><div align="right"><?=number_format($objResult["vat"],2,".",',');?></div></td>
<td><div align="center"><?=$objResult["type"];?></div></td>
</tr>
<?
$i++;
}
sort($arr); // เรียงลำดับ
$count_arr = array_count_values($arr); // นับจำนวนข้อมูลในตัวแปร array
?>
</table>
<table width="200" border="1" cellspacing="0" cellpadding="0">
<?php
foreach($count_arr as $key => $value):
echo "<tr><td>".$key." = ".$value."</td></tr>";
endforeach;
?>
</table>
<p> </p>
</body>
</html>
Date :
2014-02-17 22:48:17
By :
ผู้มาเยือน
แต่ว่า Type มันไม่เหมือนกันนะคะ ในแต่ละวัน บางอันมี บางอันไม่มี และมันมีหลาย type นะคะ แค่อยากให้นับแยกในแต่ละ type ที่ select วันนั้นนะคะ อันไหนไม่มีก็ไม่เอามาคะ แต่หนู Show มันไม่ถูกคะ
Date :
2014-02-17 22:49:38
By :
แอน
ได้แล้วคะ ขอบคุณพี่ ๆ มาก ๆ เลยนะคะ ที่ช่วยหนู ขอบคุณมากๆๆๆๆๆๆ คะ ของพี่ผู้มาเยือน และของพี่ sakuraei ใช้ได้ผล ทั้งสองอันคะ ขอบคุณอีกครั้งคะ แหะ ๆ ดีใจมากไปหน่อยที่พี่ ๆ ช่วย รอดตายแล้ว
Date :
2014-02-17 23:03:06
By :
แอน
Load balance : Server 02