Hi!
Does anybody has a sample script witch implement "push technology" with php?
I tried to translate this cgi script (it work!) without success...
---------------- cut here ---------------
#!/bin/sh
echo Content-type: multipart/x-mixed-replace;boundary=NEXT
echo
echo --NEXT
while true
do
echo "Content-type: text/plain"
echo
date
echo --NEXT
sleep 1
done
----------------- cut here ---------------
Any help?
TIA