PHP Syntax & Komentar / PHP Dasar

PHP: Hypertext Preprocessor atau hanya PHP saja, adalah bahasa skrip dengan fungsi umum yang terutama digunakan untuk pengembangan web.

PHP menjadi bahasa program yang berjalan disisi web server, sangat mudah simple cocok untuk pemula.

Sintak kode PHP

<?php
// PHP code goes here
?>

Contoh kode PHP:

<!DOCTYPE html>
<html>
<body>

<h1>My first PHP page</h1>

<?php
echo "Hello World!";
?>

</body>
</html>

Komentar PHP

// This is a single-line comment

# This is also a single-line comment

/* This is a
multi-line comment */
READ :  Tipe Data PHP + Contoh / PHP Dasar

Updated: July 1, 2024