PDA

View Full Version : im puzzled...wierd stuff


Frank
10-13-2002, 09:33 PM
in my php page i have this line
(copied from editor)
<img src="../images/banner/88-31.png">
BUT when i view the source from my browser its
<!-- src="../images/banner/88-31.pn-->

i dont know whats happenning but something it replacing characters...im running apache,mysql,php bundled from phpgeek. I have no clue and im getting very p*ssed. Any help would be great...

Orange
10-14-2002, 06:41 AM
try


<?php

print "<img src="../images/banner/88-31.png">";

or

echo "<img src="../images/banner/88-31.png">";

?>



post php problems in the php forum for faster answers

Frank
10-14-2002, 08:01 AM
this is not a php problem. Im simply coding html not php...there is php elsewhere in the page but thats not the problem...

Orange
10-15-2002, 05:35 AM
Where in your code does the <img src=" . . ."> tag lay?
Inside the <?php ?> tags? or out side of them?

If they are between the php tags that could be the problem, if not post a chunk of the code where your getting the error.

ill see what i can do to fix it.