Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/12/2006, 08:43
Parliament
 
Fecha de Ingreso: noviembre-2003
Mensajes: 499
Antigüedad: 20 años, 5 meses
Puntos: 7
Re: No encuentro el error

No, me sigue dando error y realmente no entiendo que es lo que pasa, les paso mas codigo

Código PHP:
for ($i 0$i $contador$i++)
    {
          echo 
'<td width='.$width.'%>'.$array[$i]['Titulo'].'</td>';
    }
       echo 
'<tr>';
    for (
$i 0$i $contador$i++)
    {
          echo 
'<td width='.$width.'%>'.$array[$i]['Descrip'].'</td>';
    }
       echo 
'</tr>';
       echo 
'<tr>';
    for (
$i 0$i $contador$i++)
    {
          echo 
'<td width='.$width.'%>'.$array[$i]['Cod_rt'].'</td>';
    }
      echo 
'</tr>';
       for (
$i 0$i $contador$i++)
    {
          echo 
'<td width='.$width.'%>'.$array[$i]['Precio'].'</td>';
    }
       echo 
'</tr>';
      
// for ($i = 0; $i < $contador; $i++)
    //{
          //echo '<td width='.$width.'%><img src ="imagenes/'.$array[$i]['Nombre_foto'].'" width="100" height="100"></td>';  

    //}
       
echo '</tr>';
              for (
$i 0$i $contador$i++)
    {
          echo 
'<td width='.$width.'%><a href="busca.php?Nombre_art='.$array[$i]['Nombre_art'].$array[$i]['Cod_art']">+ Info</a></td>';
    }
       echo '</tr>';
}
?>