Re: [nyphp-talk] From Rails back to PHP

2007-10-13 Thread Ben Sgro (ProjectSkyLine)
Jeff, Good read, thanks for sharing. - Ben Ben Sgro, President ProjectSkyLine - Defining New Horizons +1 718.487.9368 (N.Y. Office) Our company: www.projectskyline.com Our products: www.project-contact.com This e-mail is confidential information intended only for the use of the individual to

[nyphp-talk] From Rails back to PHP

2007-10-13 Thread Jeff Siegel
Thought this might be of interest. "I spent two years trying to make Rails do something it wasn’t meant to do, then realized my old abandoned language (PHP, in my case) would do just fine if approached with my new Rails-gained wisdom." See: http://www.oreillynet.com/ruby/blog/2007/09/7_reasons_i_

Re: [nyphp-talk] $_REQUEST: Bad Form?

2007-10-13 Thread David Krings
Kenneth Downs wrote: Brian D. wrote: I can't find where I read it originally, but somewhere I've been told or read that "using $_REQUEST is bad form." I understand that in cases where you want to force a $_POST request, but if you might receive $_GET or $_POST then isn't is better than doing if/

Re: [nyphp-talk] $_REQUEST: Bad Form?

2007-10-13 Thread Kenneth Downs
Brian D. wrote: I can't find where I read it originally, but somewhere I've been told or read that "using $_REQUEST is bad form." I understand that in cases where you want to force a $_POST request, but if you might receive $_GET or $_POST then isn't is better than doing if/elses? Others hav