Can anyone help me add another folder destination to the code below.
for example Categories/test, keep in mind that I want to add not repplace the location below which is Categories/Game
<?php
if(!$_POST['page']) die("0");
$page = (int)$_POST['page'];
if(file_exists('Categories/Game/page_'.$page.'.php'))
echo file_get_contents('Categories/Game/page_'.$page.'.php');
else echo 'There is no such page!';
?>