anantamu.com
PHP - Introduction
PHP - Setup
PHP - Syntax
PHP - String
PHP - constants
PHP - Operators
PHP - Superglobals
PHP Forms PHP - Forms
MySQL
MySQL - Create DB
MySQL - Update Data
MySQL - Delete Data


PHP Syntax

PHP Starts with <?php and End with ?> (OR) <script language="PHP"></script>

PHP file extension should be .php etc

PHP supports the HTML, Javascript, CSS, any other language like java etc.


New PHP file is created as syntax.php

To Run on Browser i.e http://localhost/syntax.php


<?php 
//Here PHP code 
?>
                    

Example






<h2>This is PHP Syntax page</h2>
<?php
                                    echo "Welcome to PHP";
                                   ?>

        

                    


School