> $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?
$today = Date("U");
$yesterday = $today-(24*3600); // 24 hours. 3600 seconds in an hour
$todayhumanlegible = Date("d m Y", $today);
$yesterdayhumanlegible = Date("d m Y", $yesterday);
Jason
--
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]