Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/03/2011, 12:24
miktrv
 
Fecha de Ingreso: julio-2008
Ubicación: Barcelona
Mensajes: 2.100
Antigüedad: 16 años, 5 meses
Puntos: 165
Respuesta: ayuda php isset

Código PHP:
Ver original
  1. $host = 'No definido';
  2.  
  3. if(isset($_POST['host'])) {
  4.   $host = $_POST['host'];
  5. }
  6.  
  7. echo $host;