Hi All,
Is it possible to write an application in PHP which continuously runs as a background process and based on the incoming requests it can serve the request...the ideal match would be writing a Java Multithreaded server which spawns a new thread for each incoming request...even if I dont get a threading capabilities...I should be atleast able to handle multiple function calls on this server app....and also should run on both windows and Linux!!!
Any suggestions...!
ThanX
And why would you want to write this in PHP? PHP isn't designed for this use. Use an appropriate language like C or Java.
In linux this is dead-easy, using the inetd. In windows... you'll have to to a LOT more work, I suggest you change to C or Delphi maybe.