What I am trying to achieve is to have the server do less processing. Like I
said PHP is a server side scripting language and each time a request is made a
process is spawned and processes are heavy weight as compared to a thread which
is a light weight process. So I want to take away much proce
PHP is a server side scripting language, so that means that the server will
have to do the bulk of the processing if not most.
I was thinking about shifting the processing to the client. Kinda like how java
does it. I don't know really know how java does it but it would be interesting
if it cou