1 Forum Post by "ehoarder"
Adding alt text in php?
Posted August 1st, 2014 in Programming
Is it possible to add alternative text to the star image in php?
I have set it to display the amount of stars a review has but when looking at SEO it's devalued because alt text hasn't been used on this image, any ideas?
<td width="20%" valign="top" align="left" ><div align="center">
<? $count=1;
$rank="";
while($count<=round($rateline[abcde]))
{
$rank.= "<img src=\"images/star_yellow.png\">" ;
$count=$count+1;
}?><?=$rank?></div></td>

