Hello World in PHP
In below is the code to write "Hello World" in php.
- Create "Helloworld" folder in xampp\htdocs\. (Path like :- \xampp\htdocs\Helloworld)
- Now create index.php file in your "Helloworld" folder.
- In "index.php" write below code.
- <?php
echo "Hello World";
?> - Now save file.
- Open your browser and run your folder
- like :- http://localhost/Helloworld/