|
An application which is accessed via web browser over a network is called web application or web based application. All the websites are examples of web applications. Web applications are quickly replacing traditional client server softwares. Client-Server computing requires separate software to be installed on the client machine. Any update in server software may also require update at client end. This means that client needed some preparation before software can be run. On the other hand a web application works without any installation at client end. The output of web application is usually HTML / XHTML which is rendered by a web browser. Structure of web application Web application is written in a server side scripting language like PHP. It resides on a web server which is accessible by simply typing URL in address bar of web browser. When user types address of website for example www.programming-web.com, browser transmits request to the web server which hosts the required site. On web server, web server software like apache receives this request and processes it. Processing may involve complex process such as database operations. After processing, web sever provides output which is then passed to requesting client. The output generated by web server includes only those scripts which can be rendered by web browser. So no special software is need at client end. Web browser receives this response which is rendered by browser and displayed to user. Above process repeats when user perfumes an action which requires communication with server such as submitting entry form or viewing another page. |
|
|
Thursday, 24 July 2008 06:36 |
|
In last article I explained how to make a connection to MySql server and how to create a MySql database using PHP. This article is continuation of last article. |
|
Last Updated ( Tuesday, 29 July 2008 09:34 )
|
|
Read more...
|
|
Tuesday, 01 July 2008 06:29 |
|
Classes are power mechanism available in CSS to control the layout and formatting of the page. Class allows us to combine elements into group. CSS rules are applied to a class. All the elements grouped in that class are effect by applied rules.
|
|
Last Updated ( Tuesday, 01 July 2008 06:38 )
|
|
Read more...
|
|
|
Friday, 11 July 2008 05:03 |
|
PHP provides several functions to perform DML operation on MySql database. These functions allow to establish connection, retrieve data and update existing data. Some of the most commonly used functions are |
|
Last Updated ( Friday, 01 August 2008 12:06 )
|
|
Read more...
|
|
Saturday, 28 June 2008 11:02 |
|
CSS allow us to redefine properties of HTML elements. By redefining properties we can create attractive look and feel for web pages. More importantly its usage is simple and straight forward. For example consider following rule. P { color: #F00 ; } In above rule āPā is a basic CSS selector which can be used to change any property of Paragraph. |
|
Last Updated ( Monday, 14 July 2008 10:28 )
|
|
Read more...
|
|
|
|
|
|
|
Page 1 of 2 |