H I O X INDIA
Online PHP Tutorial
 HOME  ||  Scripts  ||  Purchase  ||  Tutorials  ||  Images  ||  Tools  ||  Templates 
  :-)  Send Page   :-)   Feedback   :-)   Register   :-)   Links   :-)   Support   :-)
Español Français 中文 Deutsch
 Forums   Hosting   Internet Stats   Easy Calculation   FUN Games 

PHP Topics
Introduction
Syntax
Data Types
Variables
Operators
Control Structures
Functions
Pre-defined Function
Calendar Functions
Date and Time
Array Functions
Array Functions List1
Array Functions List2
Math Functions
PHP Mysql Functions
File Handling
Error Handling
DB Size
PHP Mail
String Tokens
String Functions
String Functions List1
String Functions List2
Session Functions
Cookies Functions
Form Variables
Running PHP from JS
Array To JS
Array to PHP
Encryption
Common Header
Ask Your Doubts
More about PHP
Feedback




Introduction to Hypertext PreProcessor(PHP) Programming Language


Topic

What is php?
How can I use php?



Explanation

PHP - Hypertext PreProcessor.

PHP is a server-side scripting language for creating dynamic and interactive websites. It is widely-used as an alternate to ASP. PHP is perfectly suited for Web development and can be embedded directly into the HTML programming code.

PHP is used where data processing is required, there by the scripting language access and process data from the database, and displays the result.

To give an example. Say we have marks of 100 students in a file or database. We have to show the marks to students depending on who requests for it. Here we cannot have 100 html files. Here php language is handy. It will process the db/file data and dynamically create html files, for example.

    
    <html>
    <body>
    <!-- php portion -->
    
    <?php
    //Here depending upon request
    //php processes data and sets it.
    //i.e. If person1 requests, person1's data will be set
    //If person2 requests, person2's data will be set
    ?>
    
    
    <!--php portion ends -->
    </body>
    </html>
    
Go ahead with the Hypertext Preprocessor programming tutorial.
As you read more you will understand it well.




privacypolicy     licence     sitemap
(c) copyright, 2004 hioxindia.com