What's more you can do some neat stuff with manipulating the timestamp to create very 
quick and accurate calendars. For instance for an application I had to build I had 
need of highlighting weeks on a calendar to change colors every two weeks, but any 
given day needed to know which color it should show. Since the increment of the 
timestamp is so predictible you can use the mod operator and do all kinds of neat 
stuff. Anyway, just another 2 cents worth.

<>< Ryan

-----Original Message-----
From: Manoj Japher [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 21, 2002 1:04 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Date Subtraction


hi,
  hey you are bang on target. It did solve my problem.

Thanks a lot,

Manoj

On Wed, 21 Aug 2002 [EMAIL PROTECTED] wrote :
>
>if you really just want yesterday, i use date("Y-m-d", time() -
86400);
>
>that way you'll get the correct info, no matter if it spans 
>weeks,
months,
>years etc....
>
>i realize there could be flaws with this b/c it just subtracts
24hours, but
>it works....
>
>
>
>                     "Manoj  Japher"
>                     <manojjapher@redif       To:
[EMAIL PROTECTED]
>                     fmail.com>               cc:
>                                              Subject:     
>[PHP-DB]
Date Subtraction
>                     08/21/2002 02:23
>                     PM
>                     Please respond to
>                     "Manoj  Japher"
>
>
>
>
>
>
>hi,
>   Is there any way I can get previous day's date, like we get
>current
>date by using getdate() or date() function. I mean is there 
>some
>in-built function in PHP which can subtract date to give me
>yesterday's date.
>   I am currently calculating it using some code, which I have
>written
>and it is very tirng and recursive to check for each possible
>case.
>
>   If someone has solved this before pls let me know.
>
>Thanks,
>
>Regards,
>
>Manoj
>
>
>'I have miles to go before I sleep, and promises to keep'
>
>--
>PHP Database Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>
>


'I have miles to go before I sleep, and promises to keep'

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to