Cara Membuat Website dengan PHP

Panduan Membuat Website dengan PHP dari Awal

if(isset($_GET[‘page’]))
$page = $_GET[‘page’];

switch ($page) {
case ‘home’:
include “home.php”;
break;
case ‘about’:
include “about.php”;
break;
case ‘contact’:
include “contact.php”;
break;
default:
include “home.php”;
}
?>

© 2023 Website Saya | All Rights Reserved

BACA JUGA :  Download: Pengertian, Fungsi, Cara Kerjanya

Leave a Comment