Uncategorized
PHP: Hello World
MBRD •
Berikut adalah script sederhana "Hello World" dalam PHP:
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<?php
echo "Hello, World!";
?>
</body>
</html>
Penjelasan:
- <!DOCTYPE html>: Menentukan tipe dokumen sebagai HTML5.
- <html>: Tag pembuka HTML.
- <head>: Bagian untuk informasi meta, judul halaman, dan link ke file CSS atau JavaScript.
- <title>Hello World</title>: Menentukan judul halaman.
- <body>: Bagian utama halaman web.
- <?php echo "Hello, World!"; ?>: Kode PHP untuk mencetak "Hello, World!".
Simpan file ini dengan ekstensi .php, misalnya hello_world.php, dan jalankan di server web yang mendukung PHP seperti Apache atau Nginx.