Re: [PHP] Converting arrays

2002-02-26 Thread Gary
I am using date(B); http://www.php.net/manual/en/function.date.php that break 24 hours into 1000 beats I will still have to use timezone but break them into beats. Gary Stewart G. wrote: >Why dont you just use timezones? > >=S. > >On Mon, 25 Feb 2002, Gary wrote: > >>Simon Willison wrote: >

Re: [PHP] Converting arrays

2002-02-26 Thread Stewart G.
Why dont you just use timezones? =S. On Mon, 25 Feb 2002, Gary wrote: > Simon Willison wrote: > > > Gary wrote: > > > >> Hi All, > >> I am not too bad at building arrays in php but I need to convert a > >> javascript form into php. How wuld I conver the small snippit here? > >> > >> var d =

Re: [PHP] Converting arrays

2002-02-25 Thread Gary
Simon Willison wrote: > Gary wrote: > >> Hi All, >> I am not too bad at building arrays in php but I need to convert a >> javascript form into php. How wuld I conver the small snippit here? >> >> var d = new Array(), l = new Array(); >> l[0] = new Array(1, -360, 1, "CHICAGO"); >> l[1] = new Arr

Re: [PHP] Converting arrays

2002-02-25 Thread Simon Willison
Gary wrote: > Hi All, > I am not too bad at building arrays in php but I need to convert a > javascript form into php. How wuld I conver the small snippit here? > > var d = new Array(), l = new Array(); > l[0] = new Array(1, -360, 1, "CHICAGO"); > l[1] = new Array(1, -420, 1, "EDMONTON"); > l[2

Re: [PHP] Converting arrays

2002-02-25 Thread Jason Lotito
$d = array(); $l = array(); $l[0] = array(1, -360, 1, "CHICAGO"); $l[1] = array(1, -420, 1, "EDMONTON"); $l[2] = array(1, -540, 1, "FAIRBANKS"); - Original Message - From: "Gary" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 4:15 PM Subject: [PHP] Converting