Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/08/2009, 14:48
Suyta
(Desactivado)
 
Fecha de Ingreso: septiembre-2004
Mensajes: 360
Antigüedad: 19 años, 7 meses
Puntos: 1
Mostrar resultados de búsqueda

Hola chicos, necesito ayuda por favor

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 (
$rowmysql_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>"
Pero obtengo esto:
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!