![ojotes](http://static.forosdelweb.com/fdwtheme/images/smilies/ojotes.png)
Tengo esta tabla:
http://www.iddin.com/captchas/tabla.gif
Intento haciendo esto:
Código PHP:
$query0= "select contid, title AS LINE, keyword, occurances from rank_temp ";
echo "<table border='1'>";
echo "<tr><td>#</td><td>Article</td>";
$kresult0 = mysql_query($query0, $con) or die("Error reading data3: ".mysql_error());
if ($row= mysql_fetch_array($kresult0)) {
DO
{
$title=$row['LINE'];
$contid=$row['contid'];
$keyword=$row['keyword'];
$occurances=$row['occurances'];
$line1.= "<td>".$keyword."</td>";
$col1.="<TR><td>".$contid."</td><td>".$title."</td><td>".$occurances."</td>";
}
while ($row=@mysql_fetch_array($kresult0));
}
echo $line1;
echo $col1;
echo "</table>";
http://www.iddin.com/captchas/resultado.gif
Estoy hace 1.000 horas luchando y no me doy cuenta dónde está el error.
Por favor si alguien tiene un minuto, gracias!