|
|
|
ต้องการสลับสีตามข้อมูลวันเดือนปี แสดงข้อมูลตามวันที่ในเวลาปัจจุบัน เป็นสีเขียว แล้ววันที่ผ่าน ให้มันเป็นสีสีเทาไม่ซาบว่าต้องเขียนยังไง ครับ |
|
|
|
|
|
|
|
ต้องการสลับสีตามข้อมูลวันเดือนปี แสดงข้อมูลตามวันที่ในเวลาปัจจุบัน เป็นสีเขียว แล้ววันที่ผ่าน ให้มันเป็นสีสีเทาไม่ซาบว่าต้องเขียนยังไง ครับ
Code (SQL)
CREATE TABLE `customer` (
`CustomerID` varchar(4) NOT NULL,
`Name` varchar(50) NOT NULL,
`Email` varchar(50) NOT NULL,
`CountryCode` varchar(2) NOT NULL,
`Budget` double NOT NULL,
`Used` double NOT NULL,
`start` datetime NOT NULL,
`end` datetime NOT NULL,
PRIMARY KEY (`CustomerID`)
) ENGINE=MyISAM DEFAULT CHARSET=tis620;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` VALUES ('C001', 'Win Weerachai', '[email protected]', 'TH', 1000000, 600000, '2014-08-21 16:30:00', '2014-08-21 18:30:00');
INSERT INTO `customer` VALUES ('C002', 'John Smith', '[email protected]', 'EN', 2000000, 800000, '2014-08-21 17:30:00', '2014-08-21 19:30:00');
INSERT INTO `customer` VALUES ('C003', 'Jame Born', '[email protected]', 'US', 3000000, 600000, '2014-08-21 14:00:00', '2014-08-21 16:00:00');
INSERT INTO `customer` VALUES ('C004', 'Chalee Angel', '[email protected]', 'US', 4000000, 100000, '2014-08-21 12:30:00', '2014-08-21 14:30:00');
INSERT INTO `customer` VALUES ('C005', 'Win Weerachai', '[email protected]', 'US', 1000000, 600000, '2014-08-22 20:00:00', '2014-08-22 22:00:00');
INSERT INTO `customer` VALUES ('C006', 'John Smith', '[email protected]', 'TH', 2000000, 800000, '2014-08-21 13:00:00', '2014-08-21 15:00:00');
INSERT INTO `customer` VALUES ('C007', 'Win Weerachai', '[email protected]', 'TH', 1000000, 600000, '2014-08-21 15:00:00', '2014-08-21 17:00:00');
INSERT INTO `customer` VALUES ('C008', 'John Smith', '[email protected]', 'UK', 2000000, 800000, '2014-08-21 16:00:00', '2014-08-21 18:00:00');
INSERT INTO `customer` VALUES ('C009', 'Win Weerachai', '[email protected]', 'JP', 1000000, 600000, '2014-08-21 09:00:00', '2014-08-21 11:00:00');
INSERT INTO `customer` VALUES ('C010', 'John Smith', '[email protected]', 'JP', 2000000, 800000, '2014-08-21 12:00:00', '2014-08-20 14:30:00');
INSERT INTO `customer` VALUES ('C011', 'John Smith', '[email protected]', 'JP', 2000000, 800000, '2014-08-21 14:15:00', '2014-08-21 19:00:00');
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM customer WHERE end >= NOW() order by end asc";
$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>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
$i=0;
while($objResult = mysql_fetch_array($objQuery))
{
if($oldcode != $objResult["start"]) $i++;
$bg = ($i%2==1)? "#CCCCCC" : "#00e500";
?>
<tr bgcolor="<?=$bg;?>">
<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>
<td align="right"><?=$objResult["start"];?></td>
<td align="right"><?=$objResult["end"];?></td>
</tr>
<?
$oldcode = $objResult["start"];
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS, JavaScript, CakePHP
|
|
|
|
|
|
Date :
2014-08-20 15:49:46 |
By :
poulim |
View :
685 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?PHP
if($objResult["start"]==date("Y-m-d")){
echo "<font color=\"#FF0000\">'".$objResult["start"]."'</font>";
}else{
echo "<font color=\"#999999\">'".$objResult["start"]."'</font>";
}
?>
|
|
|
|
|
Date :
2014-08-20 16:11:14 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Field ไหนครับ ที่คุณจะให้ทำตามเงื่อนไข?
|
|
|
|
|
Date :
2014-08-20 16:44:00 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM customer WHERE end >= NOW() order by end asc";
$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>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
$i=0;
$oldcode = date("Y-m-d");
while($objResult = mysql_fetch_array($objQuery))
{
list($date,$time) = explode(" ",$objResult["start"]);
$bg = ($oldcode == $date)?"green":"gray";
?>
<tr bgcolor="<?=$bg;?>">
<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>
<td align="right"><?=$objResult["start"];?></td>
<td align="right"><?=$objResult["end"];?></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2014-08-21 17:49:42 |
By :
cowboycnx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|