All pastes #627125 Raw Edit

Someone

public text v1 · immutable
#627125 ·published 2007-07-20 03:09 UTC
rendered paste body
				while ($row = mysql_fetch_array($result))
				{
						$tags = explode(', ', $row['tags']); 
						foreach($tags as $b)
						{
							if(count($tags) >= 3 )
							{
								echo '<a href="tag.php?tag=', $b, '" style="font-size:25px">', $b, '</a> ';
							}
							else
							{
								echo "<a href = 'tag.php?tag=$b'>$b</a> ";
							}
						}
				}