Re: [nyphp-talk] MySQL PHP Class generation

2008-07-09 Thread bzcoder
David Mintz wrote: On Wed, Jul 9, 2008 at 10:16 AM, bzcoder <[EMAIL PROTECTED] > wrote: Getting tired of typing the same functions over and over to create a table class in PHP, so I'm working out script for my editor(Komodo) to do it for me. I gues

Re: [nyphp-talk] MySQL PHP Class generation

2008-07-09 Thread Guilherme Blanco
Instead of reinvent the entire wheel, why don't you use existent tools that does that job for you? The two most known tools are Propel and Doctrine: Doctrine: http://www.phpdoctrine.org Propel: http://propel.phpdb.org Cheers, On Wed, Jul 9, 2008 at 5:23 PM, Tom Melendez <[EMAIL PROTECTED]> wro

Re: [nyphp-talk] MySQL PHP Class generation

2008-07-09 Thread Tom Melendez
On Wed, Jul 9, 2008 at 1:12 PM, David Mintz <[EMAIL PROTECTED]> wrote: > > On Wed, Jul 9, 2008 at 10:16 AM, bzcoder <[EMAIL PROTECTED]> wrote: >> >> Getting tired of typing the same functions over and over to create a table >> class in PHP, so I'm working out script for my editor(Komodo) to do it f

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread Anthony Wlodarski
I was seeing some odd behavior myself recently. It seems Firefox 3.0 masks it as "(none)" for some reason so that may be an issue to look into. -Anthony Steve Manes wrote: PaulCheung wrote: Could somebody point me in the right direction or make any suggestion?? On Exiting the "my" applicati

Re: [nyphp-talk] MySQL PHP Class generation

2008-07-09 Thread David Mintz
On Wed, Jul 9, 2008 at 10:16 AM, bzcoder <[EMAIL PROTECTED]> wrote: > Getting tired of typing the same functions over and over to create a table > class in PHP, so I'm working out script for my editor(Komodo) to do it for > me. > > I guess you're not into any of the popular frameworks? -- Dav

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread Steve Manes
PaulCheung wrote: Could somebody point me in the right direction or make any suggestion?? On Exiting the "my" application, I want to return the user back to the original "jump-off point" just before they entered the application, wherever that may have been. I believe I can capture the URL save

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread bzcoder
PaulCheung wrote: Could somebody point me in the right direction or make any suggestion?? On Exiting the "my" application, I want to return the user back to the original "jump-off point" just before they entered the application, wherever that may have been. The best solution is for the page

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread csnyder
On Wed, Jul 9, 2008 at 2:39 PM, PaulCheung <[EMAIL PROTECTED]> wrote: > I have tried running the HTTP_REFERER using the one liner below and nothing > happens > >echo $_SERVER['HTTP_REFERER']; > ?> > > I cannot see why it should not work on my hosted Linux website, as it works > on this site > >

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread PaulCheung
I have tried running the HTTP_REFERER using the one liner below and nothing happens I cannot see why it should not work on my hosted Linux website, as it works on this site http://unix.cms.gre.ac.uk/code/php/examples/http_referer.php Paul - Original Message - From: csnyder To:

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread csnyder
On Wed, Jul 9, 2008 at 9:45 AM, Patrick May <[EMAIL PROTECTED]> wrote: > HTTP_REFERER is pretty common, I think you can count on it 9 times out of > 10. > > ~ p Or even 999 times out of 1000. Opera lets you turn it off, I believe, but all other modern (since 2001?) browsers send it. You still n

[nyphp-talk] MySQL PHP Class generation

2008-07-09 Thread bzcoder
Getting tired of typing the same functions over and over to create a table class in PHP, so I'm working out script for my editor(Komodo) to do it for me. I decided to go the XML/XSLT route because I can use the same code to make an online web interface(since PHP5 has such nice XSLT function s

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread Patrick May
HTTP_REFERER is pretty common, I think you can count on it 9 times out of 10. ~ p On Wed, Jul 9, 2008 at 9:28 AM, PaulCheung <[EMAIL PROTECTED]> wrote: > Could somebody point me in the right direction or make any suggestion?? > > On Exiting the "my" application, I want to return the user back to

[nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread PaulCheung
Could somebody point me in the right direction or make any suggestion?? On Exiting the "my" application, I want to return the user back to the original "jump-off point" just before they entered the application, wherever that may have been. I believe I can capture the URL save it until required.