View Full Version : no errors, but it just aint working...
Any help is greatly apprecited.
For some unknown reason the php is parsing the html code, and i dont know why or how to fix it.
i am trying to use the php code on
www.glo-racing.com/v3/main.php
and the source code can be found at
www.glo-racing.com/v3/main.html and right clicking and selecting the view source button.
It is this actual code that is used in the main.php file but it keep screwing things up.
Please help.
Bitsys
11-17-2002, 01:55 PM
In the source code, you have:
<img border="0" src="../images/1.gif" width="120"height="80"></a>
<img border="0" src="../images/2.gif"width="120"height="80"></a>
<img border="0" src="../images/3.gif"width="120"height="80"></a>
the "</a>" tags are being used without having a "<a href="">" tag. To fix it, I think you can make them go in this format:
<a href="insert_link_here"><img border="0" src="../images/1.gif" width="120"height="80"></a>
<a href="insert_link_here"><img border="0" src="../images/2.gif"width="120"height="80"></a>
<a href="insert_link_here"><img border="0" src="../images/3.gif"width="120"height="80"></a>
This is assuming you want the images to link to another page. If you don't want them to link to another page, then you can just remove the "</a>" tags at the end so that it will look like:
<img border="0" src="../images/1.gif" width="120"height="80">
<img border="0" src="../images/2.gif"width="120"height="80">
<img border="0" src="../images/3.gif"width="120"height="80">
thanks, i will remove the </a> now as they do not link to anything.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.