Archive for the 'Database Development' Category
Database Development and the Web
In a nutshell: static web pages (normal pages you build) always look the same and the content never changes unless you upload a new page.
Dynamic pages do the opposite, they can change every time they are loaded, and they can change their content based on what users do, like clicking on some text or an image.
DATABASE DRIVEN WEB PAGES – One of the most common types of dynamic web pages is the database-driven type. This means that you have a web page that grabs information from a database (the web page is connected to the database by programming,) and inserts that information into the web page each time it is loaded. If the information stored in the database changes, the web page connected to the database will also change accordingly (and automatically,) without human intervention.
This is commonly seen on online banking sites where you can log in (by entering your user name and password) and check out your bank account balance. Your bank account information is stored in a database and has been connected to the web page with programming thus enabling you to see your banking information.
You can see why you might want to consider a database driven site: you would want it if your information changes very often, just like in a banking site. Database driven sites can be built using several competing technologies, each with it’s own advantages. Some of those technologies/tools include:
- PHP
- JSP
- ASP
- PERL
- Cold Fusion