|
$fehler=0;
$act_var = rawurldecode ($act_var);
if (strpos($act_var,".")===false)
{
$real_path = realpath("".$act_var.".php");
if ((file_exists($real_path)) and (strpos($real_path,'htdocs')!==false))
{
include ("".$act_var.".php"); }
else
{
$fehler=1;
}
}
else
{
$fehler=1;
}
if ($fehler<>0){echo("Die Angeforderte Seite wurde nicht auf unserem Server gefunden.");}
?>
|
|