Header Ads Widget

First PHP Program

இது ஒரு எளிய PHP  உருவாக்க மிகவும் எளிதானது. அவ்வாறு செய்ய, ஒரு கோப்பை(file) உருவாக்கவும் Html tags + PHP code எழுதவும் இந்த கோப்பை(file) சேமிக்கவும் .php extension.

அனைத்து PHP tag இடையே syntax  கீழே கொடுக்கப்பட்ட:

  1. <?php   
  2. //your code here  
  3. ?>  

File: first.php
  1. <!DOCTYPE>  
  2. <html>  
  3. <body>  
  4. <?php  
  5. echo "<h2>Hello First PHP</h2>";  
  6. ?>  
  7. </body>  
  8. </html>  
Output:

Hello First PHP

Post a Comment

0 Comments