Contact Us:09993897203
Email: dstarenainfo@gmail.com
1st Branch: 121,Malviya Nagar,
New Market,Bhopal-462003
2nd Branch:146/7/2 Premium Center
Zone-1,MP Nagar
Bhopal-462011
Arrow Registration

What is PHP?

PHP is  a general-purpose server-side scripting open source language originally designed for Web development to produce dynamic Web pages. Firstly when is introduce in PHP it is called PERSONAL HOME PAGE but After some day’s to introduce PHP stands for PHP: Hypertext Preprocessor. PHP was originally created by Rasmus Lerdorf in 1995.PHP is open source technology . The main implementation of PHP is now produced by The PHP Group and serves as the formal reference to the PHP language It is one of the first developed server-side scripting languages to be embedded into an HTML source document rather than calling an external file to process data.Open source means all the file and script is free. PHP can be deployed on most Web servers and also as a standalone shell on almost every operating system and platform free of charge. A competitor to Microsoft’s Active Server Pages (ASP) server-side script engine and similar languages, PHP is installed on more than 20 million Web sites and 1 million Web servers. Software that uses PHP includes MediaWiki, Joomla, Wordpress, Concrete5, MyBB, and Drupal.

 The main implementation of PHP is now produced by The PHP Group and serves as the formal reference to the PHP language. PHP is free software released under the PHP License, which is incompatible with the GNU General Public License (GPL) due to restrictions on the usage of the termPHP.

  • PHP stands for PHP: Hypertext Preprocessor
  • PHP is a server-side scripting language, like ASP
  • PHP scripts are executed on the server
  • PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.)
  • PHP is an open source software
  • PHP is free to download and use

    What is a PHP File?

    • PHP files can contain text, HTML tags and scripts
    • PHP files are returned to the browser as plain HTML
    • PHP files have a file extension of “.php”, “.php3”, or “.phtml”

    What is MySQL?

    • MySQL is a database server
    • MySQL is ideal for both small and large applications
    • MySQL supports standard SQL
    • MySQL compiles on a number of platforms
    • MySQL is free to download and use

    PHP + MySQL

    • PHP combined with MySQL are cross-platform (you can develop in Windows and serve on a Unix platform)

    Why PHP?

    • PHP runs on different platforms (Windows, Linux, Unix, etc.)
    • PHP is compatible with almost all servers used today (Apache, IIS, etc.)
    • PHP is FREE to download from the official PHP resource: www.php.net
    • PHP is easy to learn and runs efficiently on the server side

    Where to Start?

    To get access to a web server with PHP support, you can:

    • Install Apache (or IIS) on your own server, install PHP, and MySQL
    • Or find a web hosting plan with PHP and MySQL support

SYNTAX:

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”
    “http://www.w3.org/TR/html4/loose.dtd”>
<html>
    <head>
        <title>Example</title>
    </head>
    <body>

        <?php
            echo “Hi, I’m a PHP script!”;
        ?>

    </body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *

.