Re: how send messages between two proceses?



A few standard ways for PHP process A to send to send information to
process B is
(1) Via shmop (http://php.net/shmop)
(2) Writing/reading a common file
(3) on Windows, you can use IE to store/retrieve data

The last possibility also has the advantage that it can be made event
driven. However, as far as I've been able to figure, it's not
available in a server context.

Csaba Gabor from Vienna

On Jan 27, 9:50 am, "_mario.lat" <_mario....@xxxxxxxxx> wrote:
hallo,
I'd like to fork a process so I have 2 process: process A and process B.
How can send A a message (array of values or a value) to B?
how can B read the message?
Thank you in advance for the time you'll spend for me.
Mario.

.