Posts: 42
Name: Jez
Location: Grand Junction, CO / Williston, ND
|
I agree NullPointer (with the short tags thing) I normally don't use them, but that was a frustrated attempt at making something happen.
Good call on the resource! you were absolutely correct, I solved that issue by"
PHP Code:
$literal_file = basename($filename);
fclose($chatfile);
echo $literal_file;
echo "<br><IFRAME SRC='$literal_file' WIDTH='450' HEIGHT='100'></IFRAME><br>";
echo "<IFRAME SRC='http://testarea.net78.net/chat/Jez_Mon Feb 21.html' width='50%' height='300'></IFRAME><br>"; ?>
<IFRAME SRC="http://testarea.net78.net/chat/Jez_Mon Feb 21.html" WIDTH=450 HEIGHT=100> </IFRAME>
</body> </html>
good 'ol basename()
Now I'm banging my head on the wall AGAIN because it's STILL not wanting to insert the specified file into the iframe. I can call http://testarea.net78.net/chat/Jez_Mon%20Feb%2021.html directly from the browser, but as soon as I use it as a src in the iframe... nothing. Uhg!
As you can see, I put the literal URL into the iframe (just to see...) and nothing.
There must be something stupidly obvious that I'm overlooking here.
even the iframe outside of the php isn't working...
|