|
|
|
รบกวนดู code ให้หน่อยครับ ผม echo ค่าในตารางออกมาแสดงและรวมค่าตัวเลขท้ายตาราง มันไม่ออกครับ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>My Project</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
</head>
<body bgcolor="#CCFFFF"><br><br>
<?php
$brok2sale = $_POST['shbroker'];
$conn = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test_db");
$strSQL = "SELECT * FROM quoted,broker WHERE (broker.id=quoted.qbrok) and (quoted.qbrok=$brok2sale)";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$objResult = mysql_query($objQuery);
$bid=$objResult['ID'];
$bname=$objResult['Name'];
?>
<center><p><font size="6" color="#000080" face="Tahoma, MS Sans Serif"<strong>Report by BROKER</strong></font></p>
<td><div align="left"><font color="#000080"><?php echo "Broker ID : "?><?php echo $bid?>
<td><div align="left"><font color="#000080"><?php echo "Broker Name : "?><?php echo $bname?>
<table width="100%" border="1" cellpadding="5" cellspacing="0" bordercolor="#434951">
<tr>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Share Name</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Quantity Before(Unit)</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Close Price</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Average Cost</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Amount Before(B)</strong></font></div></td>
<td colspan="3" valign="top"><div align="center">BUY</div></td>
<td colspan="3" valign="top"><div align="center">SALE</div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Quantity Balance(Unit)</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Average Cost</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Amount Balance(B)</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>GAIN/LOSS</strong></font></div></td>
<td rowspan="2"><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Remark</strong></font></div></td>
</tr>
<tr>
<td><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Unit</strong></font></div></td>
<td><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Price</strong></font></div></td>
<td><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Amount</strong></font></div></td>
<td><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Unit</strong></font></div></td>
<td><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Price</strong></font></div></td>
<td><div align="center"& gt;<font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Amount</strong></font></div></td>
</tr>
<?php
$i=0;
while ( $objResult = mysql_fetch_array ( $objQuery ) )
{
$i++;
if($i%2==0)
{
$bg = "#CCCCCC";
}
else
{
$bg = "#FFFFFF";
}
?>
<tr bgcolor='<?php echo $bg;?>'>
<td><div align="center"><?php echo $objResult['qshare']?></div></td>
<td><div align="center"><?php echo number_format($objResult['qvolumebe'],0);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qcloseprice'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qaveragebe'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qamountbe'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qbuyvolume']);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qbuypri'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qbuyamount'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qsalevolume']);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qsalepri'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qsaleamount'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qvolumeaf']);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qaverageaf'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qamountaf'],2);?></div></td>
<td><div align="center"><?php echo number_format($objResult['qgl'],2);?></div></td>
<td><div align="center"><?php echo $objResult['qremark']?></div></td>
</tr>
<?php
}
mysql_close ( $conn );
?>
</table>
</center>
<p align="center"><font face="MS Sans Serif" size="5"><a href="main.php">Main Manu</a></font></p>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2010-08-29 15:51:52 |
By :
nongnr |
View :
884 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง ID กับ Name อะครับมันไม่ออก
แล้วตรง remark ทำไมมันไม่มีกรอบตารางครับ ดูมันว่างๆ
อีกนิดครับ ถ้าค่าที่เป็น 0 เราจะไม่ให้มันแสดงได้ไหมครับ รึว่าเปลี่ยนเป็น เครื่องหมาย ลบ " - " แทน
|
ประวัติการแก้ไข 2010-08-29 15:58:45
|
|
|
|
Date :
2010-08-29 15:56:33 |
By :
nongnr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเช็คตรง
Code (PHP)
$bid=$objResult['ID'];
$bname=$objResult['Name'];
ว่ามันถูกต้องไหมครับชื่อฟิว ส่วนกรอบที่ไม่แสดงอาจจะเกิดจากตรงนั้นไม่มีข้อมูลครับ ส่วนค่าที่เป็น 0 ถ้าเป็นในเชิงมูลค่าให้แสดงเอาไว้ดีกว่าครับ
|
|
|
|
|
Date :
2010-08-29 16:10:46 |
By :
zankumuro |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ชื่อฟิลล์ถูกต้องนะครับ
ถ้าเปลี่ยนจาก code
Code (PHP)
$objResult = mysql_query($objQuery);
เป็น code นี้
Code (PHP)
$objResult = mysql_fetch_array($objQuery);
มันก็แสดงผลนะคับ
แต่ค่า record แรกในตารางมันจะหายไปเลยคับ
|
|
|
|
|
Date :
2010-08-29 17:00:46 |
By :
nongnr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงไหนอีกบ้างครับที่ต้องแก้
ขอบคุณครับ
|
|
|
|
|
Date :
2010-08-30 00:25:09 |
By :
nongnr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนด้วยครับ
|
|
|
|
|
Date :
2010-09-02 17:43:31 |
By :
nongnr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$objResult = mysql_query($objQuery);
$Rows = mysql_fetch_assoc($objQuery);
$bid=$Rows['ID'];
$bname=$Rows['Name'];
|
|
|
|
|
Date :
2010-09-02 18:05:39 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ
มันขึ้นมาโชว์นะคับ
แต่ข้อมูล column แรกมันหายไป (BTS) อะครับ
|
|
|
|
|
Date :
2010-09-02 19:06:43 |
By :
nongnr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|