我正在使用这个脚本告诉你在特定日期之前剩下多少天,在我的数据库中有一个名为'insurance_date'的表,它是DATETIME格式,并且是一个唯一的到期日期。
然后我的脚本会告诉用户在该日期之前剩余的天数,即保险到期前剩余4天,或保险到期前剩余3天。
它还使用红色或绿色的交通灯指示灯,因此如果到期日为7天或以下,它将显示红色,否则如果8天或更长时间显示为绿色。
目前剧本工作正常,但只有“2天”,然后剧本假设“保险明天到期,如果有一天要去,或者'今天',如果到期日是今天的日期。
有人可以告诉我我做错了什么,谢谢
代码:
<?php include 'config.php';
$data = mysql_query("SELECT *, TIMESTAMPDIFF(DAY, insurance_date, NOW()) AS expire_date FROM supplier_stats")
or die(mysql_error());
echo "<table class=\"table\" style=\"width:900px; font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;
font-size:11px;\" >
<tr>
<td style=\"width:150px;\">ID:</td><td>Company Name:</td><td>Note:</td><td>Status:</td></tr>";
while($row = mysql_fetch_array( $data )) {
$days = $row['expire_date'] -1;
echo "<tr><td style=\"width:150px;\"><p>".$row['id'] . "</p></td>";
echo "<td style=\"width:150px;\"><p>".$row['company_name'] . "</p></td>";
if ($days > 0) {
echo "<td style=\"width:150px;\"><p>Insurance expires in <font color=\"red\">{$row['expire_date']} day(s)!</font></p></td>";
} else {
$when = $days*-1;
echo "<td style=\"width:150px;\"><p>Insurance expires";
if ($when > 1){
echo " in {$when} days</p></td>";
}
if ($when >= 8){
echo "<td style=\"width:150px;\"><div class=\"green_light\"></div></td>";
}
if ($when <= 7){
echo "<td style=\"width:150px;\"><div class=\"red_light\"></div></td>";
} elseif ($when > -1) {
echo " tomorrow</p></td>";
} elseif ($when === 0) {
echo " today</p></td>";
}
}
echo "<tr>";
}
echo "</table>"; //Close the table in HTML
?>
答案 0 :(得分:0)
我不知道你在数据库中存储了什么,但假设你存储了保险到期日期的时间戳,我会做这样的事情。
$expiry_date=$row['expire_date'];
$current_date=time();
$seconds_to_expire=$expiry_date-$current_date;
$days_to_expire=floor($seconds_to_expire/86400);
if($days_to_expire<=0)
{
echo "Expired";
}
else if($days_to_expire==1)
{
echo "Expires tomorrow";
}
else if($days_to_expire==2)
{
echo "Expires in two days";
}
else
{
echo "Expires in ".$days_to_expire." days";
}