Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/04/2010, 15:34
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: funciones en php


Código PHP:
Ver original
  1. function foo($bar)
  2. {
  3.         // ..
  4.         return $bar;
  5. }
  6.  
  7. echo foo($_POST['nombre']);

Saludos.