From: | Jean-Michel Chabanne <jeanmichel(dot)chabanne(at)free(dot)fr> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: DAte use in For loop |
Date: | 2003-05-01 20:11:48 |
Message-ID: | b8rv1j$2vnp$1@news.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
Ramesh PAtel wrote:
> Hi All
>
> please give one help
>
> I want to us date variable in for loop Condition. in PHP
>
> But it not working Properly.
> $dt='2003-04-22' ;
> $to='2003-04-30';
>
> FOR ( $dt=$dt; $dt > $to ; )
> {
> print "XYz";
> }
>
> Please Help me
>
> and how to file date diff in Day please Help
>
> Ramesh Patel
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
>
$begin_d = mktime(2, 0, 0, 4, 22, 2003);
$end_d = mktime(2, 0, 0, 4, 30, 2003);
while($begin_d <= $end_d)
{
echo date("Y-m-d",$begin_d) . "\n";
$begin_d += 86400;
}
For PHP informations, look at comp.lang.php
--
Jean-Michel Chabanne
77450 MONTRY (FRANCE)
48" 54' N - 2" 49' E
Powered by Linux
From | Date | Subject | |
---|---|---|---|
Next Message | Tim Ellis | 2003-05-01 20:27:36 | Re: Newbie |
Previous Message | Vinay | 2003-05-01 18:19:35 | Newbie |