Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/09/2006, 05:46
jspcat
 
Fecha de Ingreso: junio-2005
Ubicación: Barcelona
Mensajes: 458
Antigüedad: 18 años, 11 meses
Puntos: 4
Prueba esto:
siendo $result=mysql_query(consulta,identificadorbase);
$tabla="<tr>";
while ($row=mysql_fetch_array($result))
{
$tabla.="<td><a href=\"".$row["Nombre"].".php\">Ficha</a>";
}

echo $tabla;