29 lines
525 B
PHP
Raw Permalink Normal View History

2024-12-11 15:19:08 +05:45
<?php
$section = $_GET['section'] ?? 'home';
switch ($section) {
case 'home':
include 'home.php';
break;
case 'about':
include 'about.php';
break;
case 'menu':
include 'menu.php';
break;
case 'testimonials':
include 'testimonials.php';
break;
case 'events':
include 'events.php';
break;
case 'reservations':
include 'reservations.php';
break;
default:
include '404.php';
break;
}
?>