code for selection of live year and further
<select id="year" name="year" class="form-control">
<?php
for($i = date("Y"); $i < 2099; $i++){
echo '<option value="'.$i.'">'.$i.'</option>';
}
?></select>
<select id="year" name="year" class="form-control">
<?php
for($i = date("Y"); $i < 2099; $i++){
echo '<option value="'.$i.'">'.$i.'</option>';
}
?></select>
Comments
Post a Comment