Friday, January 3, 2014

Web technologies

Web technology simply means a way to show your contents on the web in the form web pages and web applications. Nowadays the most used architecture in web technology is the client-server technology. In this kind of technology a server or a set of server is responsible for all client queries and views. Cloud technology is also an emerging technology. May be this will supersede all the previous technology used in web framework.

So, we start it simple, we have clients and server. The server has a database which contains all the data needed for functioning properly. LAMP(Linux Apache Mysql Perl/php/python) or WAMP(Windows Apache Mysql Perl/php/python) are the mostly used architecture nowadays for dynamic web page creation.

 I will start with PHP as it is the mostly used language for dynamic page creation. MySql is also a vastly used Database Management System and I will also walk through that. In my next blog I will start with some basic PHP tutorial. HTML and CSS is also very important thing to learn.

No comments:

Post a Comment

Feautured Post

Python Trivia Post: enumerate()

Python has a very useful inbuilt function, which is called enumerate(). This is needed whenever you need the numbering of a certain element...