Linking web pages to database

Rino

New Member
I want to learn how to link my web pages to the database . Can Dreamweaver link to database? How can I learn how to link my web pages to database? What are the database software used for server?
Is ASP the programming language to link to the database?
And what is Php and ASP?
 

zkiller

Super Moderator
Staff member
dreamweaver can create the code needed to access a database from your pages.

asp is one of many scripting languages that can be used to integrat a database into your web site. many other languages such as php, cold fusion, jsp (java) and .NET can be used to accomplish this. asp is a microsoft technology and is most commenly used on windows based servers,

php and asp are both server side scripting languages, meaning that the code is processed on the server and pure html is sent to the clients web browers. their are also client side scripting languages such as javascript or jscript. this are scripts that are processed on the end users system. both types of scripts have their advantages and disadvantages. you will commenly see web sites using a mixture of both to get the desired results.
 
Top