I have a simple Mysql database which I have populated with data and have some php scripts to display the data.
What I want to do is display the following data in two or three columns rather than a single column using 'while echo'
Can anyone help?
Heres my current code for a single column
<ul>";
while($myrow=MySQL_fetch_array($result))
{
// Grab Data
$name=$myrow["Name"];
$DOB=$myrow["DOB"];
$PlaceofBirth=$myrow["PlaceofBirth"];
$Nationality=$myrow["Nationality"];
$Height=$myrow["Height"];
$Weight=$myrow["Weight"];
$Fee=$myrow["Fee"];
$Position=$myrow["Position"];
$SquadNo=$myrow["SquadNo"];
$International=$myrow["International"];
$Signed=$myrow["Signed"];
$Clubs=$myrow["Clubs"];
$review1 =$myrow["review1"];
$bbsreview =$myrow["bbsreview"];
// Display our results
echo "
<li><font face=\"Verdana\" size=\"2\"><a HREF=\"player.php?details=$name\">$name</a></font></li>";
}