Re: [PHP] passing resources from one script to another

2004-11-11 Thread Ian Firla
Thanks Greg. That is what I'm doing. The problem remains passing a resource to the script executed by exec. Ian On Thu, 2004-11-11 at 08:45 -0600, Greg Donald wrote: > On Thu, 11 Nov 2004 15:15:56 +0100, Ian Firla <[EMAIL PROTECTED]> wrote: > > The problem is the dialogue with the client. If I

Re: [PHP] passing resources from one script to another

2004-11-11 Thread Ian Firla
I should have specified that this is a shell script, not a web application. I have a listening process running. The listening process calls another script once a connection is established. This is done via exec. It works; however, I can't pass a resource directly to the other script. Therefore,

Re: [PHP] passing resources from one script to another

2004-11-11 Thread Greg Donald
On Thu, 11 Nov 2004 15:15:56 +0100, Ian Firla <[EMAIL PROTECTED]> wrote: > The problem is the dialogue with the client. If I enter into a while > loop then the whole script remains occupied and cannot accept new > connections. PHP doesn't have threads.. and that's what you would need to accept mor