Simpan program berikut dengan ekstensi .php, misal: hello.php
?View Code PHP<html>
<head>
<title>Hello World</title>
</title>
<body>
<?
echo "Hello World";
// print "Hello World"; You can also use this as an alternative
?>
</body>
</html>
Kebanyakan PHP dipakai pada aplikasi web. Kode program di atas memperlihatkan bagaimana kode php di gabung bersama [...]