Is it possible to make a real time data processing system using PHP?
As an example, when a content/layout changed in server by admin, it will make change on all over the clients who were using that content/layout like viewing/editing.
I don't want to use any AJAX/FLASH technique only using PHP. Is it possible?
PHP isn't really a real time system. What you can do however is write your code inside a loop and have it loop continually with a 1 second sleep (so it doesn't lock the CPU and freeze the machine).
Within that loop you can do whatever you want. Just be sure to have some way of stopping it.
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.