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>
Try this alt. method: <tr> <?php echo "<td valign=top align=left>"; ?> <a href="index.php"><img src="images/banner.jpg border="0" alt="ALT TEXT/DESCRIPTION"></a> <?php echo "</td>"; ?> </tr> Hope this is what you were looking for...
finally it worked this way with \ backward slash at the end of alt tag. <tr> <? echo "<td valign=top align=left ><a href=index.php ><img src=\"images/banner.JPG\" border=0 alt='quality ribbons' \</a> </td>"; ?> </tr> Thank you guys.