W pliku index.php mam taki kod:
Kod
$this_var = " $go = $_GET["go"];
if ($_GET["go"]=="wydarzenia")
{
if (is_file("page/{$go}.html="))
{
include "page/Wydarzenia/{$go}.html";
}
else
{
echo "<br />Nie ma takiej strony :-(";
}
}
else
{
include "page/glowna.html";
}";
if ($_GET["go"]=="wydarzenia")
{
if (is_file("page/{$go}.html="))
{
include "page/Wydarzenia/{$go}.html";
}
else
{
echo "<br />Nie ma takiej strony :-(";
}
}
else
{
include "page/glowna.html";
}";
w pliku menu_lewe.php mam
Kod
$this_var = "<a href="index.php?go=glowna">Strona główna</a><br />
<a href="index.php?go=Wydarzenia">Wydarzenia</a><br />";
<a href="index.php?go=Wydarzenia">Wydarzenia</a><br />";
i jak naciśnę na wydarzenia to zamiast wydarzeń pjawia mi się strona główna? może mi ktoś pomóc?