ich muss das übergeben:
Und damit bekomme ich folgende Fehler:
Warning: Failed opening 'opd/new_project.see.php?id=1' for inclusion (include_path='.:/usr/lib/php') in /httpd/........../www/index.php on line 41
In der index.php auf Zeile 41 steht das:
Wie kann ich die Fehlermeldung beheben?
PHP-Code:
index.php?site=opd/new_project.see.php?id=$put
Warning: Failed opening 'opd/new_project.see.php?id=1' for inclusion (include_path='.:/usr/lib/php') in /httpd/........../www/index.php on line 41
In der index.php auf Zeile 41 steht das:
PHP-Code:
<?php
if($site == "")
{
include_once("home-text/home.html");
}
else
{
include_once("$site"); // Zeile 41
}
?>
Kommentar