17-07-2009, 18:18
Kod:
<?php
@$id = $_GET['id'] ;
if (file_exists('strony/glowna.html')){
include('strony/glowna.html');
}
else
{
include('strony/glowna.html');
}
if (file_exists('strony/galeria.html')){
include('strony/galeria.html');
}
else
{
include('strony/glowna.html');
}
if (file_exists('strony/filmy.html')){
include('strony/filmy.html');
}
else
{
include('strony/glowna.html');
}
if (file_exists('strony/biografia.html')){
include('strony/biografia.html');
}
else
{
include('strony/glowna.html');
}
if (file_exists('strony/kontakt.html')){
include('strony/kontakt.html');
}
else
{
include('strony/glowna.html');
}
?>
Ok mam coś takiego i mi nie wczytuje czy mam gdzies jakies bledy ?
<li><a href="index.php?id=glowna" title="Zdjęcia" target="_self">Strona główna</a></li> a tak odnośniki [/php]