v index.php mam na jednom mieste kde sa mi otvaraju ostatne stranky tento skript:
?
<?
$page = ($_GET['page'] != '') ? $_GET['page'] : 'home';
$go = "$page.php";
if (file_exists($go)) include ($go); else;
?>
Potom jednotlive odkazy vyzeraju napr. takto:
<a href="index.php?page=flash_games>
Ale ak chcem pouzit odkaz na skript z ineho adresara vyskusal som toto:
<a href="index.php?page=Priecinok/subor> tento odkaz funguje ale zda sa mi ze je to trosku divny sposob, ci nie? Je to v poriadku?