Hey guys,
How do you add a (html title) to this image?

   [COLOR=Blue] 

$Cat .= "<tr>\n\t<td style=\"padding:0px\">
<caption align=center style=\"padding:0px\">
<img src=\"myimages/pic1.gif\" border=\"0\" >
</caption>
</td>\n</tr>\n\n";
[/COLOR]

Thank you much 🙂

    This isnt a PHP issue, perhaps more HTML knowledge is required since you basically answered your own question without realising.

    $Cat .= "<tr>\n\t<td style=\"padding:0px\">
    <caption align=center style=\"padding:0px\">
    <img src=\"myimages/pic1.gif\" title=\"mytitle\" border=\"0\" >
    </caption>
    </td>\n</tr>\n\n"; 
    

      alt="mytitle" might be better instead of tittle... its W3C standard to always have an alt tag for the image, which is basically a title.

      But alt tags show up on mouse over in IE, but not mozilla... title shows up in mozilla, so might be good to use both.

        When will these browser incompatibilities end????

          Write a Reply...