Editor PHP Online
Contoh Kode
<?php
// Contoh variabel
$nama = "John Doe";
$umur = 25;
// Contoh kondisi
if ($umur >= 18) {
echo "$nama sudah dewasa.";
} else {
echo "$nama masih di bawah umur.";
}
// Contoh perulangan
echo "<ul>";
for ($i = 1; $i <= 5; $i++) {
echo "<li>Item $i</li>";
}
echo "</ul>";
?>