Forum Moderators: open
heres the code that appears in the page as viewed in notepad
<tr>
<td width="144" rowspan="2"><img src="images/topleftlogo.gif" alt="Logo" width="144" height="121" /></td>
<td width="634" height="92"><img src="images/banner.jpg" /></td>
</tr>
Heres the code from the view source of internet explorer from the same page
<tr>
<td width="144" rowspan="2"><img src="images/topleftlogo.gif" alt="Logo" width="144" height="121" /></td>
<td width="634" height="92"></td>
</tr>
as you can see, the banner.jpg complete img tag is missing. same thing in firefox and internet explorer, run it off my machine or a server it disappears.
has anyone seen anything like this before and can give me a fix?
i have even removed the css totally from the page and still same thing occurs.
<img src="images/banner.jpg" width="634" height="91" />
then i renamed the exact same page to test.php and it dont work any more. goto view cde in IE6 and it give a blank page.
that line is the only line of code on the page, what gives?
<tr>
<td width="144" rowspan="2"><img src="images/topleftlogo.gif" alt="Logo" width="144" height="121" /></td>
<td width="634" height="92"><? echo "fsdfd"."<img src='images/banner.jpg' width='634' height='91' />";?></td>
</tr>
i run the file and the "fsdfd" part displays in the screen but once again the whole img tag has gone.