| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
|
|
|
|
#2 (permalink) |
|
Work faster microphone ..
Join Date: Feb 2003
Location: Cambridge, UK
Posts: 1,709
|
A static website, is just a collection of html pages. Not that this is a bad thing, but it is a pretty old fashioned (in internet terms anyway) way of creating a website. Especially if it has more than two pages.. A dynamic Site on the other hand, at it's most basic incarnation would use includes, so that say, the menu that appears on every page is only actually located in one file (so you only have to change it the once) and then whenever a page loads, it pulls in that code to display the menu. Once you seperate the structure of your site from the data it presents and avoid duplicating data you're on the way. HTH By the way, do you work for http://www.digitalroom.com/ (the link in your sig) , if so, you really should know this already |
|
|
|
#3 (permalink) |
|
Senior Member
Join Date: Jan 2005
Posts: 12,340
|
To build on what Mike said - a static site is a collection of HTML files. A dynamic site uses a programming language like PHP or ASP and (usually) a database like MySQL or MSSQL. Static is perfectly appropriate for small sites of a few pages, but once you get to more than that, it's best to go dynamic. I still build static sites; however, Apache/PHP/MySQL is next on my agenda. I can generally hack my way through a simple PHP script and get it working, but that's about it. |
|
![]() |