Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/07/2008, 02:46
Avatar de Aimarejada
Aimarejada
 
Fecha de Ingreso: abril-2006
Mensajes: 207
Antigüedad: 18 años
Puntos: 0
Enlace que no funciona en Mozilla

Estoy imprimiendo un menu con enlaces utilizando un bucle for y no se por que en Mozilla los enlaces no te los deja pinchar pero en IE si te deja..

Aqui esta el script que tulizo y que vi en algun tutorial del foro.

Código PHP:
<?php                            
                                $con 
=  menu(1);                        $columnes 5;      
                                    for (
$i=1$row mysql_fetch_row ($con); $i++) {
                                    
$resto = ($i &#37; $columnes);
                                    
if ($resto == 1) {echo "<ul>";} 
                                        echo 
'<li><a href="index.php?vairableget='$row[0].'">'.$row[2].'</a></li>'
                                    if (
$resto == 0) {echo "</ul>";}
                                    }
                                
?>

Última edición por Aimarejada; 23/07/2008 a las 04:39