Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/04/2003, 13:05
Avatar de pereztroff
pereztroff
 
Fecha de Ingreso: junio-2002
Ubicación: En la Internet.
Mensajes: 4.068
Antigüedad: 21 años, 10 meses
Puntos: 5
consulta facil de contestar, creo...

1.- ¿que significa esta expresion, pregunta si la variable esta vacia?? -->
Código PHP:
if (!$opcion) { 
2.- tiene sentido lo siguiente??

Código PHP:
<? if (!$opcion) { ?>
<html>
.............
<a href="?opcion=1"> opcion 1 </a>
..............
</html>
<? 
} else { 
include(
$opcion.".php");
}
?>