|
|
|
สรุปยอดขายรายวันมาจาก mysql แล้วมันแสดงขึนมาทั้งหมด แต่ผมต้องการให้มันแสดงแค่ยอดขายของวันนี้ |
|
|
|
|
|
|
|
ใช้ tools ของ dreamweaver ในการเขียนโปรแกรมหรอครับ
ถ้าใช่สงสัยร่ายกันยาว
|
|
|
|
|
Date :
2014-02-16 20:33:02 |
By :
champkung226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับ ใช้ tools ของ dw เขียน TwT มีทางไหนที่พอทำได้มั้ยครับ @Champkung226
|
|
|
|
|
Date :
2014-02-16 20:38:00 |
By :
เดอะชายน้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยกตัวอย่างให้ละกันนะครับ รอแพร๊บ บ บบ
|
|
|
|
|
Date :
2014-02-16 20:39:39 |
By :
champkung226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ข้าน้อยจะนั่งรออย่าใจจดใจจ่อกันเลยทีเดียว
|
|
|
|
|
Date :
2014-02-16 20:46:31 |
By :
เดอะชายน้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปรับใช้นะครับ
Code (PHP)
<?
$conn = mysql_connect("127.0.0.1","root","1234"); // ใส่ host , user , password
$dbname = "TEST"; //ชื่อ database
mysql_query('SET CHARACTER SET utf8');
mysql_select_db($dbname, $conn );
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<html>
<head>
<title>REPORT</title>
</head>
<body>
<table>
<tr>
<td>รหัส</td>
<td>ราคาสินค้า</td>
<td>เวลาขาย</td>
</tr>
<?
$nowday = date('Y-m-d');
$sql = "SELECT* FROM table_data WHERE DATE_FORMAT(time,'%Y-%m-%d') = '$nowday'";
$res = mysql_query($sql,$conn) or die (mysql_error());
while ($row = mysql_fetch_array($res))
{
?>
<tr>
<td><?=$row["table"]?></td>
<td><?=$row["money"]?></td>
<td><?=$row["time"]?></td>
</tr>
<?
$totalmoney = $totalmoney + $money;
}
?>
<tr>
<td colspan="3" align="right"><?=$totalmoney?></td>
</tr>
</table>
</body>
</html>
ปล. แนะนำนะครับอย่าใช้ tools ของ dream ในการเขียนโปรแกรมเลยครับ มันเป็นวิธีที่ผิดอ่าครับ
เมื่อก่อนสมัยเรียนผมก็ใช้ tools ของ dream พอออกไปทำงานจริง ทำอะไรแทบไม่เป็นเลย แม้แต่จะดูโค้ด
ยังไม่สายจะเริ่ม ลงมือเขียนเองครับ สู้ๆ
|
ประวัติการแก้ไข 2014-02-16 20:49:11 2014-02-16 21:01:12 2014-02-16 21:01:54
|
|
|
|
Date :
2014-02-16 20:46:43 |
By :
champkung226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากห่ะ เดวผมลองเอาไปประยุกใช้ดู
|
|
|
|
|
Date :
2014-02-16 20:49:14 |
By :
เดอะชายน้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค๊ดใช้ได้แต่ว่า totalmoney ไม่ขึ้น TwT แง่ว
|
|
|
|
|
Date :
2014-02-16 21:47:32 |
By :
เดอะชายน้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลืมไปครับ ขอโทดที 555
<?
$conn = mysql_connect("127.0.0.1","root","1234"); // ใส่ host , user , password
$dbname = "TEST"; //ชื่อ database
mysql_query('SET CHARACTER SET utf8');
mysql_select_db($dbname, $conn );
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<html>
<head>
<title>REPORT</title>
</head>
<body>
<table>
<tr>
<td>รหัส</td>
<td>ราคาสินค้า</td>
<td>เวลาขาย</td>
</tr>
<?
$nowday = date('Y-m-d');
$sql = "SELECT* FROM table_data WHERE DATE_FORMAT(time,'%Y-%m-%d') = '$nowday'";
$res = mysql_query($sql,$conn) or die (mysql_error());
while ($row = mysql_fetch_array($res))
{
?>
<tr>
<td><?=$row["table"]?></td>
<td><?=$row["money"]?></td>
<td><?=$row["time"]?></td>
</tr>
<?
$totalmoney = $totalmoney + $row["money"];
}
?>
<tr>
<td colspan="3" align="right"><?=$totalmoney?></td>
</tr>
</table>
</body>
</html>
|
ประวัติการแก้ไข 2014-02-16 21:50:01
|
|
|
|
Date :
2014-02-16 21:49:47 |
By :
champkung226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|