Posted by highway of diamonds on 11/05/05 23:08
I'm listing a directory of image files. It is quite long so i wanted to
break it into four columns. I'm using the code below which works well
in mozilla firefox but breaks in IE and Opera.
Is there a better way of doing this?
I'm using this to list them in a table of 4 columns:
$flag=0;
echo "<table width=\"80%\" border=\"1\" cellspacing=\"0\"
cellpadding=\"3\" >";
echo "<tr>";
while($file=readdir($dir) )
{
$flag++;
if ($flag<5)
{
echo "<td>".$file."</td>";
}
else
{
echo "</tr>";
$flag=0;
echo "<tr>";
}
}
if ($flag<5)
{
echo "</tr>";
}
echo "</table>";
Navigation:
[Reply to this message]
|