Server-side, client-side?
Server-side web applications
A good example for a server side application is an online store. Say you click on the link "books", the server-side database searches its data records for any items labeled as a book and then presents it to you. And so forth. Your browser is not involved in the task of retrieving the requested data. The server is doing all the work. The great advantage of server-side web applications is the ability to sample and store user data such as your book order while operating independently from the browser version the client is using to log on to the web site. Additionally, a server-side application is capable of presenting dynamic, custom taylored content. There are also great advantages with regards to website management: If the server has all necessary information already stored in its database, you can log on to the website's admin section from anywhere in the world accessing and changing the content without having to have the data sources installed on the computer you are using.
