Web Technologies

information super highway
There are many different server side technologies used to deliver content on the WWW (world wide web). The technologies generally share the common goal of delivering content in the form of HTML (hyper text markup language) to clients. I will briefly discuss some of these technologies in this blog.

The first thing that is necessary to deliver web pages is a web server. The basic job of the web server is to handle requests and deliver responses. When you request a web page you are really asking an address via http (hyper text transfer protocol) to deliver its contents to your device (usually a web browser). The web server on the machine with that address processes this request and delivers HTML. In the case of a static site this is usually done by sending the contents of the corresponding .html/htm page on the server. However, for dynamic sites there is usually a coding language, framework or gateway, and one or more databases involved.