This morning I found a way of doing it.... I don't know if there's a cleaner way.... also, something is wrong with the while towards the bottom of the code.... it does do what I want, but it is clearly not correct (even to me!)
echo "<table border='1' width='600'>";
while ($data=mysql_fetch_array($result))
{
for ($count=0;$count <1;$count++)
{
echo "<TR><TD>";
echo $data[0]."<BR>";
echo $data[1]."<BR>";
echo $data[2]."<BR>";
echo $data[3]."<BR>";
echo $data[4]."<BR>";
echo $data[5]."<P>";
}
echo "</td><TD>";
if ($data=mysql_fetch_array($result))
{
do {
echo $data[0]."<BR>";
echo $data[1]."<BR>";
echo $data[2]."<BR>";
echo $data[3]."<BR>";
echo $data[4]."<BR>";
echo $data[5]."<P>";
} while ($count < 1);
echo "</td></tr>";
}
}