Question : Weird PHP HTML table display problem

Hi im using ths PHP script to display images from a database in rows of 5:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
		<?php		
		$result = mysql_query("SELECT *** FROM *** $link);
		$num_rows = mysql_num_rows($result);
		$i=0;
		echo "<table>\n<tr>";
		while($i < $num_rows)
		{
			if(($i%5)==0) { echo "<\tr><tr>"; }

			echo "<td>";
			echo "<a href='pics_view.php?id=$i'><img src='pics_view.php?id=$i' height='200px' width='200px' border='0' /></a>";
			echo "</td>";	
			$i++;					
		}	
		echo "<\tr></table>\n";				
		?> 

It all works fine but above the images I get this output to the browser:
< r>< r>< r>

Could it be my PHP settings?
Most strange please help.

Answer : Weird PHP HTML table display problem

Do you have proxy settings setup in Firefox that you don't have in Safari?
Random Solutions  
 
programming4us programming4us