Google Search

Google Search

HTML/JavaScript

Tuesday, June 23, 2009

HTML SYNTAX FORMAT:

HTML SYNTAX FORMAT:


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

/head tag/

Untitled Document

/head tag/





TITLE TAG:

Everything we need put in the tags.These are predefined in format.That allows you to show on browser.

Title of your project

ex:PHP Webdevelopment Code Provider Guide

Saturday, June 20, 2009

HTML & PHP INTRODUCTION

PHP is a scripting language originally designed for producing dynamic web pages. It has evolved to include a command line interface capability and can be used in standalone graphical applications.PHP is a widely-used general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

While PHP was originally created by Rasmus Lerdorf in 1995, the main implementation of PHP is now produced by The PHP Group and serves as the de facto standard for PHP as there is no formal specification.PHP is free software released under the PHP License, however it is incompatible with the GNU General Public License (GPL), due to restrictions on the usage of the term PHP.

It generally runs on a web server, which is configured to take PHP code as input and create web page content as output. It can be deployed on most web servers and on almost every operating system and platform free of charge. PHP is installed on more than 20 million websites and 1 million web servers.

What is PHP?

PHP is a server-side, cross-platform, HTML embedded scripting language.

* server-side: This means that PHP scripts execute on the Web server, not within the browser on your local machine.

* cross-platform: Cross-platform means that PHP scripts can run on many different operating systems and Web servers. PHP is available for the two most popular Web server configurations (IIS running on Windows NT and Apache running on UNIX).

* HTML embedded scripting language: This means that PHP statements and commands are actually embedded in your HTML documents. When the Web server sees the PHP statements in the Web page, the server executes the statements and sends the resulting output along with the rest of the HTML. PHP commands are parsed by the server much like Active Server Pages or Cold Fusion tags.