Opdracht

Druk "Hello world" af in php.

Input

Er is geen input.

Output

Hello world

Voorbeeld

Hello world

Code

<html> 
	<head> 
		<title>Hello world</title>
	</head>
	<body>
		<?php 
			echo '<p>Hello World</p>'; 
		?> 
	</body>
</html>