Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<select name="Year">
<?php
for($i = 3; $i <= 12; $i++)
{
$year = 2000 + $i;
echo "<option ";
if($date_arr[0] == $year)
{
echo "selected ";
}
echo "value='$year'>$year \n";
}
?>
</select>