選擇下拉有一個簡單的if語句爲默認從下拉正確的日期?因此,例如,如果日期是02/11/16
然後它會默認選擇 01/28/16
基本上我要求的是一個聲明,如果默認選擇的下拉該日期內從日期範圍
<?php
date_default_timezone_set('US/Eastern');
$currenttime = date('d:m:y:h:i:s A');
list($day,$month,$year) = split(':',$currenttime);
$currentdate = "$month/$day/$year";
?>
<form>
<select>
<option>01/14/16</option>
<option>01/28/16</option>
<option>02/14/16</option>
///the list goes on for ages so i saved time and cropped out the rest of the dates.
</select>
</form>
你將如何決定它是在計費週期? –
你爲什麼不只是做'$的currentdate =日期( 「M/d/Y」)',而不是分裂的時間? – Barmar
@Sougata看起來帳單期限是菜單中日期之間的範圍。 – Barmar