The hello world program in PHP

1. Overview

We start learning any programming language, with the famous hello world! program. This tradition is followed religiously since the inception of software programming, and we are happy that we will support it too. We will learn the basics of PHP in this series, named “PHP – Back to basics.” Let’s start with the first article in the series.

2. What is PHP

Wikipedia defines PHP as – “Hypertext Preprocessor (or simply PHP) is a server-side scripting language designed for Web development, but also used as a general-purpose programming language.” In simple words, PHP is a general purpose programming language which powers most of the web. Notable websites like Wikipedia and Facebook are built on PHP.

3. hello world! program

3.1 Writing the program

To write the program, you can use Eclipse IDE. If you do not have eclipse already, you can follow our installation guide. Below is the hello world program written in PHP:

<?php
    echo "hello world!";
?>

3.2 Running the program

The above program is saved in a file named index.php

Assuming that we have our environment setup up and running, if not you can follow this guide to setup your environment.

We can put our index.php in the server root (root folder of the server) and open http://localhost/ in a browser.

In browser, we see following output:

hello world!

3.3 Understanding the program

PHP is an interpreted language. The PHP interpreter, an executable program reads PHP from files and runs it line by line. Our hello world program has only three lines. Let’s try to understand them:

The first line<?php tells the PHP interpreter that it is the starting of the PHP script. Anything between <?php and ?> is treated as php program by the interpreter and is executed line by line.

The second line – echo "hello world!"; starts with a keyword echo which instructs compiler to print whatever follows to the output. Then there is a string "hello world!" , which combines up and says to compiler to print “hello world!”. In the last there is a terminator ; , which tells the interpreter that this the end of current command and you can move forward.

The third and the last line – in our program, ?> tells the interpreter that this is the end of PHP script block.

4. Conclusion

In this article, we write our first PHP program – hello world!, run it and understood it deeply. In the upcoming articles, we would explore more and will learn about variables, strings, operators and lot more things. Also, all of our code is available on GitHub.


Posted

in

by

Tags:

Comments

6 responses to “The hello world program in PHP”

  1. Jim Avatar

    Hey would you mind letting me know which web host you’re working with?
    I’ve loaded your blog in 3 different web browsers and I must say this blog loads a lot
    quicker then most. Can you recommend a good web hosting provider at a reasonable price?
    Cheers, I appreciate it! I am sure this piece of writing has touched all the internet viewers,
    its really really good post on building up new webpage.

    1. pradeep Avatar
      pradeep

      Hey, I use bigrock for hosting. You can get it by 30% off deal here

  2. kinh nghiem Avatar
    kinh nghiem

    Excellent website. A lot of helpful info here.
    I’m sending it to a few pals ans additionally sharing in delicious.
    And of course, thank you to your effort!

    1. bootsity Avatar
      bootsity

      Thanks!

  3. Ethan Avatar

    Hmm is anyone else having problems with the pictures on this blog loading?
    I’m trying to determine if its a problem on my end or if it’s the blog.
    Any suggestions would be greatly appreciated.

    1. bootsity Avatar
      bootsity

      Hey Ethan, Can you please share an screenshot and your location/city on hello@bootsity.com? Will check if our CDN is working fine over there.

Leave a Reply

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