hallo!
habe folgendes script geschrieben...
allerdings zeigt es mir bei der datumsausgabe immer 200513 an und nicht 200601..
weis jemand wie das geht???
habe folgendes script geschrieben...
allerdings zeigt es mir bei der datumsausgabe immer 200513 an und nicht 200601..
weis jemand wie das geht???
PHP-Code:
<?php
$year = date("Y");
$month = date("m");
$date1 = $year.$month;
$date2 = $year.$month+1;
$date3 = $year.$month+2;
$date4 = $year.$month+3;
$date5 = $year.$month+4;
$date6 = $year.$month+5;
?>
<select>
<option value="<?php echo "$date1"; ?>"><?php echo "$date1"; ?></option>
<option value="<?php echo "$date2"; ?>"><?php echo "$date2"; ?></option>
<option value="<?php echo "$date3"; ?>"><?php echo "$date3"; ?></option>
<option value="<?php echo "$date4"; ?>"><?php echo "$date4"; ?></option>
<option value="<?php echo "$date5"; ?>"><?php echo "$date5"; ?></option>
<option value="<?php echo "$date6"; ?>"><?php echo "$date6"; ?></option>
</select>
Kommentar