Results 1 to 3 of 3

Thread: About PHP

  1. #1
    platter007
    Guest
    About PHP

    PHP is an acronym of hypertext preprocessor. It is a server side language through which we can make a dynamic web page by embedding PHP code into HTML. To run PHP pages you need to have following installation on your system/machine.

    OS (Operating System) -> Windows/Linux
    Server -> IIS/Apache
    Database -> MySQL, MSSQL, ORACLE, MSACCESS, PostgreSQL etc.
    PHP -> PHP Installation on System

    You can easily run PHP on Windows by installing WAMP server. WAMP stands for Windows+Apache+MySQL+PHP and popularly used as development platform next to LAMP (Linux+Apache+MySQL+PHP).

    A sample PHP page script starts as follows:
    =========CODE BEGINS========

    <?php // PHP Begins
    echo 'Hello World'; //(echo) Print Output on Screen
    ?> //PHP Ends

    =========CODE ENDS==========

    There are various support and tutorials available for PHP. Some popular resources are:
    http://www.php.net (PHP site)
    http://www.mysql.com (MySQL site)
    http://www.w3schools.com/PHP (PHP Tutorials)
    http://www.codeplatter.com

  2. Internet, Programming and Graphics   -   #2
    shutdk's Avatar Poster BT Rep: +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75BT Rep +75
    Join Date
    Jan 2007
    Posts
    2,313
    Isn't that the reason why Wikipedia exists?

  3. Internet, Programming and Graphics   -   #3
    KFlint's Avatar ... BT Rep: +35BT Rep +35BT Rep +35BT Rep +35BT Rep +35BT Rep +35BT Rep +35
    Join Date
    Mar 2007
    Posts
    4,056
    saying hello as a first post would have been just fine...

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •