Hallo leute, habe ein Problem mit meiner Seite, nämlich immer wenn ich sie aufrufe, kommt:
Fatal error: Cannot redeclare gettemplate() (previously declared in c:\appserv\www\webtemplate1\index.php:2) in c:\appserv\www\webtemplate1\index.php on line 2
und dass ist der INhalt meiner index.php:
Hab echt keine Ahnung wo der Fehler liegt, also hoffe ich mal, dass ihr mir helfen könnt
Fatal error: Cannot redeclare gettemplate() (previously declared in c:\appserv\www\webtemplate1\index.php:2) in c:\appserv\www\webtemplate1\index.php on line 2
und dass ist der INhalt meiner index.php:
PHP-Code:
<?
function gettemplate($template,$endung="html")
{
return str_replace("\"","\\\"",implode("",file($template.".".$endung)));
}
function dooutput($template) {
echo $template;
}
// SWITCH FUNKTION ANFANG!
switch($site) {
case news:
include('news.php');
break;
....
Kommentar