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:

  1. <!DOCTYPE html>: Menentukan tipe dokumen sebagai HTML5.
  2. <html>: Tag pembuka HTML.
  3. <head>: Bagian untuk informasi meta, judul halaman, dan link ke file CSS atau JavaScript.
  4. <title>Hello World</title>: Menentukan judul halaman.
  5. <body>: Bagian utama halaman web.
  6. <?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.