On Thu, Dec 31, 2009 at 10:52 AM, Robert Cummings <robert@xxxxxxxxxxxxx>wrote: > > > Paul Scott wrote: > >> Bipper Goes! wrote: >> >>> return ThankYou; >>> >>> >>> Oh god I think I blowed it up. >>> >> >> I prefer: >> >> <?php >> while(date('Y') < 2010) ; >> exit (' Happy New Year'); >> > > > Oh dear... that's terribly inefficient... Here's a better stab: > > <?php > > sleep( strtotime( '2009-12-31 23:59:50' ) - time() ); > for( $i = 10; $i >= 0; $i-- ) > { > echo $i ? "$i...\n" : "HAPPY NEW YEAR!\n"; > sleep( 1 ); > } > > ?> > > Cheers, > Rob. > -- > http://www.interjinn.com > Application and Templating Framework for PHP > Efficiency, to me, was getting the email out in 15 seconds or less. ;)