Need Help,
Trying to add a comma image in the code below, can some one show me how this is done. I don;t knwo if a regular if expression will work.
$query = "select * from served WHERE id = '1'";
$result = MySQL_query($query);
$row = MySQL_fetch_array($result);
$base_url = $root_url;
$default_ext = 'gif';
$count = $row[no];
$len = strlen($count);
for ($i=0;$i<$len;$i++) {
echo '<img align="absmiddle" src="'.$base_url . '/images/counter/'. substr($count,$i,1) . '.gif" border="0">';
}