PHP Scripting

Hello World

Learn PHP by example with Hello World script

5/17/2020
0 views
php-hello-world.phpPHP
<!DOCTYPE html>
<html>
	<head>
		<title>Hello World</title>
	</head>
	<body>
		<p>
		<?php
			/* Display text using 'echo' */
			echo "Hello<br />";
			
			/* Display text using 'print' (can be used with or without parentheses) */
			print("World");
		?>
		</p>
	</body>
</html>



/* Output */
Hello
World
phpHypertext Preprocessorhello worldPHP Script

Related Examples