PHP Hello World: Write Your First Program with Code Example

php hello world

You always start with “Hello World” when you learn a new language. It keeps things simple. You see right away how PHP works with this example.

You need PHP installed and a server like Apache or Nginx. Or you can use the PHP built-in server.

PHP Hello World Code Example

Start with a basic text editor like Notepad or VS Code. Save your file with a .php extension—for example, hello.php.

You only need two lines to write your first PHP program. Here is the full code:

echo "Hello World!";

echo prints text to the screen. It prints Hello World! in this case.

So how do you run it in the Browser?

  1. Put your hello.php file in your web server’s root folder (like htdocs in XAMPP or www in WAMP).
  2. Open your browser and go to http://localhost/hello.php.

You will see the text Hello World! on the screen.

Run PHP Hello World in the Command Line with Example

  1. Open your terminal.
  2. Go to the folder where your hello.php file is.
  3. Run this command:
php hello.php

The terminal will print: Hello World!

PHP Hello World Program Embedded in HTM

You can mix PHP with HTML. Here is an example:

<!DOCTYPE html>
<html>
  <head>
    <title>Hello PHP</title>
  </head>
  <body>
    <h1>
      <?php echo "Hello World!"; ?>
    </h1>
  </body>
</html>

You will see the headline with the text “Hello World!” when you open this in a browser

Wrapping Up

You learned how to write and run your first PHP program. You saw how to use echo and where to place your file.

Here is a quick recap:

  • Use <?php to start PHP code.
  • Use echo to print output.
  • Save the file with a .php extension.
  • You can run it in a browser or terminal.
  • You can also embed it in HTML.

FAQs

Do I need to install a server to run PHP?
Yes, you need a web server like Apache or Nginx. You can also use PHP’s built-in server.

Can I run PHP without a browser?
Yes, you can run PHP in the command line with php filename.php.

What is the use of echo in PHP?
It prints output to the browser or terminal.

Can PHP run without HTML?
Yes, PHP can run alone. But on websites, you often mix PHP with HTML.

What file extension should I use for PHP?
Use .php. Files with this extension can include and run PHP code.

What if I see the PHP code in the browser instead of the output?
It means the server is not processing PHP. Make sure you run the file on a server.

Similar Reads

PHP $_FILES: How to Upload Files in PHP

The PHP superglobal $_FILES is a very important utility and great for dealing with file uploads on the web. When a user…

PHP Object | How to Create an Instance of a Class

The PHP object is an instance from the PHP class or the main data structure that is already been created…

How to Select Data Using PHP and MySQL?

In this article, You will understand everything you need to know about how to use PHP to select data from…

PHP str_replace Function: How it Works with Examples

If you find a word that does not fit and want to fix it. You can use the PHP str_replace…

PHP $_GET: How to Create Dynamic URLs in PHP?

The PHP $_GET— is a tiny part, but strong in the data processing using the URL. There is a site that…

PHP List MongoDB Collections

Sometimes, you may need to list collections with MongoDB in a PHP environment to manage or analyze your database structure.…

Understanding the PHP Operator Precedence

The PHP operator precedence refers to when doing a calculation for three or more numbers, they are calculating its values…

PHP Functions: The Complete Guide for Beginners

So, what is a function? Quite simply, a function in PHP is a set of instructions you write once, and…

PHP strtoupper Function: Convert Strings to Uppercase

Use strtoupper() function when you want to change all letters in a string to uppercase in PHP. It works with…

Abstract Class in PHP: How It Works & Examples

Abstract class in PHP appeared to provide a way to define a structure for related classes and don't allow direct…

Previous Article

How to Remove the Last Character from a String in PHP

Next Article

PHP strpos Function: How it Works with Examples

Write a Comment

Leave a Comment

Your email address will not be published. Required fields are marked *


Subscribe to Get Updates

Get the latest updates on Coding, Database, and Algorithms straight to your inbox.
No spam. Unsubscribe anytime.