All pastes #626948 Raw Edit

Someone

public text v1 · immutable
#626948 ·published 2007-07-20 00:05 UTC
rendered paste body
					$query  = "SELECT tags FROM files";
						$result = mysql_query($query);
							while ($row = mysql_fetch_array($result)) {
								$tags = explode(', ', $row['tags']);
								foreach($tags as $a=>$b)
									{
									echo "<a href = 'tag.php?tag=$b'>$b</a> ";
									}
								}