im trying to create a website using switch commands to navigate with the contents displayed in a table via echo content. everything works fine. but one of the pages consists of multiple pages. The address looks like this website/index.php?content=home
etc.
but i want to make it like this for the page consisting multiple pages website/index.php?content=home&page=1
benim kütüğü kodu:
<?php
switch($_GET['content'])
{
case "home":
$content = file_get_contents('home.php');
$pages = file_get_contents('pages/1.php'); //like this?
break;
case "faq":
$content = file_get_contents('faq.php');
break;
default:
$content = file_get_contents('home.php');
break;
}
?>
/ / Bazı kod
<?php echo $content; ?>
/ / Bazı kod
Ev php:
<?php
switch($_GET['page'])
{
default:
case "1":
$page = file_get_contents('pages/1.php');
break;
default:
$page = file_get_contents('pages/1.php');
break;
}
?>
/ / Bazı kod
<?php echo $page; ?>
/ / Bazı kod
vs sayfasına gidin
but when i do it like this the echo command shows me the code of the home.php but not the one of the page i wanna load inside of it. i appreciate any kind of help!