09-26-2007, 10:09 PM
|
#3 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
Something like this, perhaps. Less function calls.
PHP Code:
<select> <?php for($iYear = date('Y'); $iYear <= date('Y') + 10; $iYear++): ?> <option><?php echo $iYear; ?></option> <?php endfor; ?> </select>
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|