How to write simple PHP Script

Sample PHP Script(hello Word)


In order To run Your Php Script You Need to Install Xampp. Installation link will be published Soon

  1. Open Notepad Or any Text Editor example Notepad++ 
  2. Create New File Using The file extinction .PHP
  3. Now type the following Code 
  4. <?php
    echo "Hello World!";
    ?>
  5. Run Xampp server
  6. Open any browser
  7. Type the following Location http://localhost/your_project_foldername/your File.Php


Comments

Popular posts from this blog

What is PHP?