Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/10/2010, 20:08
RicardoUY
 
Fecha de Ingreso: septiembre-2010
Mensajes: 62
Antigüedad: 14 años, 6 meses
Puntos: 0
link que no funciona

hola
hace un rato que no puedo detectar un pequeño error
Código PHP:
 while ($row=mysql_fetch_array($result))
 {
 echo 
'<tr><td  width="200"><font size="2"><a href="MostAviso.php?idAviso='.$row["idAviso"].'& tpropiedad=C "><font size="2">Editar aviso '.$row["idAviso"].' C</a></td>';
 echo 
'<td width="200"><div align="center"><font size="2">'.$row["fecha"].'</div></td>';
 if (
$row["Activo"]=="Si"){$estado="Vigente";}else{$estado="Pendiente";}
 echo 
'<td width="100"><font size="2"><div align="center">'.$estado.'</div></td>';
 if (
$row["Activo"]=="Si"){ echo '<td width="100"><div align="center"><font size="2">'.$row["caducidad"].'</div></td>'; }else {echo '<td><div align="center" class="Estilo4">_______ </div></td>';}
 echo 
'<tr><td  width="200"><font size="2"><a href="Bajas.php?idAviso='.$row["idAviso"].'& tpropiedad=C "><font size="2">Finalizar publicación</a></td>';
 if (
$row["premium"]=="Si"){echo '<td width="100"><div align="center"><font size="2" color="red">Gratis</div></td> </tr>';}
 if (
$row["premium"]<>"Si") {echo '<td width="100"><div align="center"><font size="2" color="red"></div></td></tr>';}

 } 
Por alguna causa que no puedo darme cuenta el link EDITAR AVISO se imprime como un link y funciona como tal redigiendo a otra pagina
Sin embargo el linlk FINALIZAR PUBLICACION a pesar de que creo lo arme con la misma sintaxis no se imprime en azul, no funciona como link
Gracias por ayudarme a darme cuenta que estoy haciendo mal????