$today = getdate();
$mon = $today[mon];
$mday = $today[mday];
$year = $today[year];
$text=sprintf("%s-%s-%s", $year, $mon, $mday);
$date=$text;

This code gets me today in the form 0000-00-00

What do I need to do to get yesterday in that form?

Thanks,
Chuck


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to