Hi Leutchen, ich habe ein Problem, an dem ich mir schon 2 age lang den Kopf zerbreche, und mir bis jetzt noch keiner helfen konnt, auch im Board ist darüber nichts zu finden!
Meine Navigationsfunktion
Der Link mit der Übergabe
index.php?sites=student.php?start=0.1&a=&b=vorname&c=mathematik&sort=vorname
Fehler meldung
Warning: Failed open index.php?sites=student.php?start=0.1&a=&b=vorname&c=mathematik&sort=vorname
Line 170
jedoch wenn ich den Link normal
student.php?start=0.1&a=&b=vorname&c=mathematik&sort=vorname
öffne funktionier ALLES!
Daher meine vermutung, es liegt an dem include in der Navigation!
Kann mir einer von euch vielleicht helfen? Wäre super,
thx im Voraus
Meine Navigationsfunktion
PHP Code:
<?php
if (isset($site))
{
include("".$site.".php");
}
else if (isset($sites))
{
include($sites);
}
else
{
echo (" Es tut uns leid, doch die von Ihnen eingegebene Seite konnte nicht gefunden werden!");
include("Standard.php");
}
?>
index.php?sites=student.php?start=0.1&a=&b=vorname&c=mathematik&sort=vorname
Fehler meldung
Warning: Failed open index.php?sites=student.php?start=0.1&a=&b=vorname&c=mathematik&sort=vorname
Line 170
jedoch wenn ich den Link normal
student.php?start=0.1&a=&b=vorname&c=mathematik&sort=vorname
öffne funktionier ALLES!
Daher meine vermutung, es liegt an dem include in der Navigation!
Kann mir einer von euch vielleicht helfen? Wäre super,
thx im Voraus
Comment