Static and Dynamic Site

When you develop a website, you would either choose to create a purely static site or purely dynamic site or quasi static, quasi dynamic site. So what actually is Static site and what actually is Dynamic Site?

Static Site
Static site is a web site that used HyperText Markup Language (HTML) to create. Every content is stored in a single .html file and is publised as it is. Most likely you could create a static page with any HTML authoring tool such as Macromedia Dreamweaver or Microsoft Frontpage. Below is what i think is the scenario that you would create a site as a static site:

  • The page does not require “frequent” update such as about us, contact us page
  • The page is meant to be informative only i.e. does not require any comment or feedback.
  • If you need your site to be google friendly, create a static page would be the best choice.

Dynamic Site
Dynamic site, like the name implied, is created dynamically. Each page is created on the fly and get the content from the one of the powerful Relational Database Managment System (RDBMS). Although the powerful web authoring tool is available nowadays to develop dynamic site, chances are you will need to learn and master one of the serverside language such as PHP, Java or .NET platform. These server side programming languages need to interact with RDBMS (Relational DataBase Management System) in order to retrieve useful content to be displayed and hence knowledge of RDBMS and SQL is a must. Follow is a list to describe a scenario when you most likely need a dynamic site.

  • The page requires “frequent” update such as news site
  • e-commerce site i.e. the site with selling, buying capabilities
  • The page requires interaction between users such as chat,feedback form etc

Although dynamic site is mostly search engine “unfriendly”, you could create a search engine friendly page by various method such as caching or mod rewrite also known as URL rewrite (only available for Apache Web Server).

We have seen the different between the static site and dynamic site. Decide wisely on which type of site to build, static or dynamic site.

This entry was posted on Sunday, November 27th, 2005 at 8:28 am and is filed under Technology. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply