I am trying to load my content dynamically via PHP. Here is my code, which for some reason doesnt work. Can you give me some hint, what am I doing wrong?
The goal is :
Click on Hypertext in nav
Get dynamically content from file page-statistiky in folder /podstranky
Code:
<nav>
<ul>
<li><a href="index.php?stranka=page-statistiky">statistiky</a></li>
</ul>
</nav>
<?php
if (isset($_GET['stranka']))
$stranka = $_GET['stranka'];
else
$stranka = 'page-statistiky';
if (preg_match('/^[a-z0-9]+$/', $stranka)) {
$vlozeno = include('podstranky/' . $stranka . '.php');
if (!$vlozeno)
echo('Podstránka nenalezena');
} else
echo('Neplatný parametr.');?>