Remove the Downadup

How Dangerous Is The Downadup Virus? This site will help you remove W32.Downadup worm from your computer. The Downadup virus has spread to millions of PCs. Since this virus connects to remote web sites for instructions, it can become dangerous at any moment. It spreads through weak network passwords, unpatched Windows software, and USB stick …

In-Field Labels jQuery Plugin

Last week I was dealing with a unique problem. I needed to set focus to a username field, but the field had an in-field label. The script was set to clear out the helper text (label) when the user entered the field. Hmm…. that won’t work! I remember seeing a nicer implementation on Mobile Me …

php strtotime

echo ‘Today day: ‘. date(‘Ymd’) .”\n”; echo  date(‘Ymd’, strtotime(‘-1 day’)); echo strtotime(“now”), “\n”; echo strtotime(“10 September 2000”), “\n”; echo strtotime(“+1 day”), “\n”; echo strtotime(“+1 week”), “\n”; echo strtotime(“+1 week 2 days 4 hours 2 seconds”), “\n”; echo strtotime(“next Thursday”), “\n”; echo strtotime(“last Monday”), “\n”; echo ‘Today day: ‘. date(‘Ymd’) .”\n”; $dateprev=date(‘Ymd’, strtotime($date. ‘-1 day’));