Re: [nyphp-talk] auto generate select tag in html

2007-02-27 Thread David Krings
selyah wrote: Hello all: i am designing a form in php and it combines HTML, I have not program in HTML in a while and need a refresher, but i am hoping that someone can help me with this simple issue. I just need to know the syntax to get the tag in HTML to auto generate a list when new 's ar

Re: [nyphp-talk] auto generate select tag in html

2007-02-27 Thread selyah
that is more like what I remembered.,thanks "Alvaro P." <[EMAIL PROTECTED]> wrote: I think this is what you mean: echo "$item"; -Alvaro selyah wrote: > Hello all: > i am designing a form in php and it combines HTML, I have not program > in HTML in a while and need a refresher, but i a

Re: [nyphp-talk] auto generate select tag in html

2007-02-27 Thread Alvaro P.
I think this is what you mean: echo "\n"; foreach ($list_items as $item) { echo "$item\n"; } echo ""; -Alvaro selyah wrote: Hello all: i am designing a form in php and it combines HTML, I have not program in HTML in a while and need a refresher, but i am hoping that someone can help me w

Re: [nyphp-talk] auto generate select tag in html

2007-02-27 Thread selyah
thanks for the link Cliff Hirsch <[EMAIL PROTECTED]> wrote:Re: [nyphp-talk] auto generate select tag in html You can write a simple function yourself or use this: http://pear.php.net/package/HTML_Select Cliff On 2/27/07 3:59 PM, "selyah" <[EMAIL PROTECTED]> wrote: Hello all: i am d

Re: [nyphp-talk] auto generate select tag in html

2007-02-27 Thread Cliff Hirsch
You can write a simple function yourself or use this: http://pear.php.net/package/HTML_Select Cliff On 2/27/07 3:59 PM, "selyah" <[EMAIL PROTECTED]> wrote: > Hello all: > i am designing a form in php and it combines HTML, I have not program in HTML > in a while and need a refresher, but i am hop

[nyphp-talk] auto generate select tag in html

2007-02-27 Thread selyah
Hello all: i am designing a form in php and it combines HTML, I have not program in HTML in a while and need a refresher, but i am hoping that someone can help me with this simple issue. I just need to know the syntax to get the tag in HTML to auto generate a list when new 's are created. in ot

Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Daniel Convissor
On Tue, Feb 27, 2007 at 09:11:04AM -0500, Peter Sawczynec wrote: > > As far as I can research it, the PHP built-in date() functions and the > special date("I") > used to identify D.S.T. will not be accurate to match this recent change > and > programmers will need to accommodate this D.S.T. cha

Re: Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread csnyder
On 2/27/07, csnyder <[EMAIL PROTECTED]> wrote: I can set forward to March 12, I'll see what time PHP 5.2 thinks it is... Well, that worked as expected, no problem. You can manually check the date category of phpinfo()'s output to see which timezone database is in use. My guess is that any data

Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Dan Cech
Dan Cech wrote: > I must confess to not keeping up with the latest wranglings in php5.x, > but as far as I am aware php4.x draws its timezone information from the > operating system and my testing indicates that it is 100% correct on > both my windows XP machine and linux (debian stable) server. A

Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Donald J Organ IV
go for it csnyder wrote: On 2/27/07, Peter Sawczynec <[EMAIL PROTECTED]> wrote: This is an excellent lucid recap. Thank you. +1, thanks Jon. I'm surprised that PHP doesn't use the system timezone data, too, but that's just my Linux-centric view of the world. I've got a server that I can set

Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Dan Cech
Peter Sawczynec wrote: > This is an excellent lucid recap. Thank you. > > So my take away is that PHP date() et al. is fairly adept at handling > time zones as based upon a relatively uniform database of > internationally-recognized time zone names, but that D.S.T. as a > changeable entity is not

Re: Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread csnyder
On 2/27/07, Peter Sawczynec <[EMAIL PROTECTED]> wrote: This is an excellent lucid recap. Thank you. +1, thanks Jon. I'm surprised that PHP doesn't use the system timezone data, too, but that's just my Linux-centric view of the world. I've got a server that I can set forward to March 12, I'll s

RE: Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Peter Sawczynec
This is an excellent lucid recap. Thank you. So my take away is that PHP date() et al. is fairly adept at handling time zones as based upon a relatively uniform database of internationally-recognized time zone names, but that D.S.T. as a changeable entity is not handled. So it appears to me that

Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Jon Baer
While not really a definitive answer + a bit old, here is an interesting recap on this type of subject from a Zend weekly (sorry kinda long but informative) ... -snip- TLK: The date wars By far the longest thread of the week was started by Stas Malyshev, who was appalled to discover that,

Re: [nyphp-talk] speaking of IDE's

2007-02-27 Thread CED
http://www.eclipse.org/ Maybe I prefer it cause I like java? =D - Original Message - From: "Jon Baer" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Tuesday, February 27, 2007 10:01 AM Subject: Re: [nyphp-talk] speaking of IDE's > Oh no ... it's Visual Basic for PHP, OO components everyw

Re: [nyphp-talk] speaking of IDE's

2007-02-27 Thread Jon Baer
Oh no ... it's Visual Basic for PHP, OO components everywhere ;-) http://www.codegear.com/Portals/0/images/PHPscreenshot1_newLG.gif http://www.codegear.com/Portals/0/images/PHPscreenshot2_newLG.gif - Jon On Feb 27, 2007, at 8:32 AM, michael wrote: http://www.regdeveloper.co.uk/2007/02/26/delp

[nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Peter Sawczynec
The government has permanently changed the start and end dates of Daylight Savings Time (D.S.T.) for the entire U.S. to provide more "daylight" hours for productivity and commerce. The length of DST has been increased: a) starting two weeks earlier and b) ending one week later. For reference:

Re: [nyphp-talk] SourceGuardian 7 Sale and Questions

2007-02-27 Thread Ben Sgro \(ProjectSkyline\)
Hey, Just wanted to let ya'll know I went w/ioncube..and I love it so far. Its super easy to use (windows-gui) and works really well. Currently, there is nothing negative to say about the software package. - Ben - Original Message - From: "Dan Cech" <[EMAIL PROTECTED]> To: "NYPHP Ta

[nyphp-talk] speaking of IDE's

2007-02-27 Thread michael
http://www.regdeveloper.co.uk/2007/02/26/delphi_php/ -- michael (this address does not accept public email) ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyph