Server-Side

“Server-side” refers to processes that occur on a server (In a server-client relationship) rather than a client machine. In most cases, the process works like this: A client machine connects to a server requesting information, the server runs a process, then the information is sent to the client machine. This is different from “Client-side”, which…

Client-Side

On the web, client-side refers to actions that take place on a user’s computer instead of a web server. Javascript, for example, is a scripting language that is read and interpreted by a user’s web browser; PHP, on the other hand, is a scripting language that is read and interpreted by the web server before…