somthing like below
require("connect.php");
$query="SELECT * FROM test";
$sql=mysql_query($query);
while($row=mysql_fetch_assoc($sql))
{
foreach($row as $key => $val)
{
$store[$key][]=$val;
}
}
echo"<table>";
foreach($store as $vals)
{
echo"<tr>";
foreach($vals as $val)
{
echo"<td>".$val."</td>";
}
echo"</tr>";
}
echo"</table>";
where do i sign up for my free account