Characteristics of php

Characteristics of PHP

Five important characteristics make PHP’s practical nature possible −

  • Simplicity
  • Efficiency
  • Security
  • Flexibility
  • Familiarity

Hello World using PHP.

Just to give you a little excitement about PHP, I’m going to give you a small conventional PHP Hello World program, You can try it using Demo link.Live Demo

<html>
   
   <head>
      <title>Hello World</title>
   </head>
   
   <body>
      <?php echo "Hello, World!";?>
   </body>

</html>