Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/11/2013, 10:54
Avatar de Linton
Linton
 
Fecha de Ingreso: diciembre-2011
Ubicación: Viena
Mensajes: 1.213
Antigüedad: 12 años, 4 meses
Puntos: 55
Respuesta: No funciona este programa de un manual

¿Entonces debe quedar así?

Código PHP:
Ver original
  1. <?php
  2.  
  3. echo "Hello there. So I hear you're learning to be a PHP programmer!\n";
  4. echo "Why don't you type in your name for me:\n";
  5. $name = $_GET('nombre');
  6.  
  7. echo "\nThanks, " . $name . ", it's really nice to meet you.\n\n";
  8.  
  9. ?>


¡Gracias por tu ayuda!