Tried alt tags "quality ribbons" here but it gives error. I think because of backward \ slash which of course can't be removed since it is a index.php file. Need help on inserting alt tags at the right place. <tr> <? echo "<td valign=top align=left ><a href=index.php ><img src=\"images/banner.JPG\" border=0</a> </td>"; ?> </tr>
Your thread should be on PHP forum. Although I don't know PHP, I guess you can use single-quotes (') instead of (\").
sorry, yeah it is with single (') alt i tried. And removing \ backlash also doesn't help since it is in index.file.
try this: when you use " in your php code you can use ' for html or java script parts of the code also the img tag wasn't closed!
It doesn't really matter if you use ' or \" , it's pretty much the same thing. <tr> <? echo "<td valign='top' align='left' ><a href='index.php'><img src='images/banner.jpg' border='0' alt='quality ribbons' /></a> </td>"; ?> </tr> Code (markup): Is that what you wanted?