Hello,
I'm getting results from a query and I want to display them in 2 columns but It doesnt work.
I have this code:
$Sql = "SELECT Name From Table";
$Query = mysql_query($Sql) or die("Query Failed");
echo '<table>';
while($Row = mysql_fetch_array($Query)){
echo '<tr>';
echo '<td width="150">'.$Row['Name'].'</td>';
echo '<td width="10"> </td>';
echo '<td width="150">'.$Row['Name'].'</td>';
echo '</tr>';
}
echo '</table>';
Need your help
Thanks