Articles → PHP → Create Your First Hello World Program In PHP
Create Your First Hello World Program In PHP
Software Requirement
- XAMPP is installed on your machine
- Any text editor like Notepad
Prerequisite Knowledge
Hello World
<html>
<head>
<title> Hello World in PHP </title>
</head>
<body>
<?php
print("Hello World");
?>
</body>
</html>
Output
Click to Enlarge