- Messages
- 19,181
- Reaction score
- 28
- Points
- 48
Well it will create a current year to 1900 select box.
Demo: http://development.brandonsgames.com/2007box.php
Use the code
So the box right now would be 2006 to 1900, it can be updated to go the other way easily. Post here any questions or e-mail me.
Demo: http://development.brandonsgames.com/2007box.php
Use the code
PHP:
<select name="year">
<?php
/*
Current Year to 1900 box generator
Brandon Long <brandon@x10hosting.com>
Demo: http://development.brandonsgames.com/2007box.php
*/
// Auto-updates to current year, can be changed to any year.
$year = date("Y");
while ($year > 1899) {
echo '<option value="'.$year.'">'.$year.'</option>
';
$year = $year - '1';
}
?>
</select>
So the box right now would be 2006 to 1900, it can be updated to go the other way easily. Post here any questions or e-mail me.