Hab ein Problem mit der include Funktion.
Irgendwie gibt er immer folgende Fehlermeldung:
ZitatWarning: include(temp/play2.php?one=$one&two=$two&for=1) [function.include]: failed to open stream: No such file or directory in --/play.php on line 26
Warning: include() [function.include]: Failed opening 'temp/play2.php?one=$one&two=$two&for=1' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in --/play.php on line 26
Und das ist die Zeile 26 :
Aber vielleicht sollte ich die dazugehörigen Teile auch noch posten:
Code
$abfrage = "SELECT * FROM hm_location WHERE id ='".mysql_real_escape_string($id)."'";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
$one = $row->one;
$two = $row->two;
if($row->one == "" AND $row->two == "")
{
}
else
{
include 'temp/play2.php?one=$one&two=$two&for=1';
}
}
Alles anzeigen
Kann mir jemand helfen ?