IE image problem

admin

Administrator
Staff member
This page is built with MySQL and PHP, displaying a product catalog. It loads fine in any browser on Mac, but for some reason, the images do not load on a PC.The link is here:<br />
<br />
<!-- w --><a class="postlink" href="http://www.canddvisionaryinc.com/stickernation/">www.canddvisionaryinc.com/stickernation/</a><!-- w --><br />
<br />
Any help would be extremely appreciated!<!--content-->Well there's one possible problem: <br />
<td align="center" valign="middle" height="100"> <br />
<a href='http://www.htmlforums.com/archive/index.php/detail.php?pid=124'<img src=http://www.htmlforums.com/archive/index.php/simage/srs2.jpg></a> It looks like the coding for your anchors doesn't have a closing > I would have thought it should be <a href='http://www.htmlforums.com/archive/index.php/detail.php?pid=124'><img src=http://www.htmlforums.com/archive/index.php/simage/srs2.jpg></a><br />
<br />
Because you're missing the closing > the browser doesn't read the opening < for the image.<br />
<br />
I guess it's a php problem, but don't look at me for an answer, I know sfa about php. :)<br />
<br />
Hope that at least helps you in the right direction.<br />
<br />
Neil<!--content-->ah, geez. now I feel like a dummy.<br />
<br />
Yup. Forgot a closing bracket.<br />
<br />
Thank you.<br />
<br />
I guess it's an interesting note for the future, however, that Macintosh machines will parse okay without them, but PCs will break. I wonder why that is...<!--content-->That's one of the many reasons why I always point people towards <!-- m --><a class="postlink" href="http://validator.w3.org/">http://validator.w3.org/</a><!-- m --> as it finds these sorts of problems in the code that won't be so easily spotted just by looking at your site in one browser alone. Try it out sometime.<!--content-->
 
Back
Top