Hello, World!

The traditional first program in PHP and other languages

Working comfortably at a cafe
damircudic / Getty Images

Every programming language has it—the basic Hello, World! script. PHP is no exception. It is a simple script that only displays the words "Hello, World!" The phrase has become a tradition for new programmers who are writing their first program. Its first known usage was in B.W. Kernighan's 1972 "A Tutorial Introduction to the Language B," and it was popularized in his "The C Programming Language." From this beginning, it grew into a tradition in the programming world.

So, how do you write this most basic of computer programs in PHP? The two simplest ways are using print and echo, two similar statements that are more or less the same. Both are used to output data to the screen. Echo is slightly faster than print. Print has a return value of 1, so it can be used in expressions, while echo has no return value. Both statements can contain HTML markup. Echo can take multiple parameters; print takes one argument. For the purposes of this example, they are equal.

<?php 
Print "Hello, World!";
?>
<?php
Echo "Hello, World!";
?>

In each of these two examples, the <?php indicates the start of a PHP tag and the ?> indicates an exit from PHP. These entrance and exit tags identify the code as PHP, and they are used on all PHP coding. 

PHP is server-side software that is used to enhance the features of a web page. It works seamlessly with HTML to add features to a website that HTML alone can't deliver, such as surveys, login screens, forums, and shopping carts. However, it leans on HTML for their appearance on the page.

PHP is open-source software, free on the web, easy to learn, and powerful. Whether you already have a website and are familiar with HTML or you are just entering web design and development, it is time to learn more about beginning PHP programming.

Format
mla apa chicago
Your Citation
Bradley, Angela. "Hello, World!" ThoughtCo, Feb. 16, 2021, thoughtco.com/hello-world-2693946. Bradley, Angela. (2021, February 16). Hello, World! Retrieved from https://www.thoughtco.com/hello-world-2693946 Bradley, Angela. "Hello, World!" ThoughtCo. https://www.thoughtco.com/hello-world-2693946 (accessed March 19, 2024).