Ver Mensaje Individual
  #17 (permalink)  
Antiguo 15/03/2009, 22:39
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 9 meses
Puntos: 2135
Respuesta: como llamar funcion al enviar correo

Concatena el valor mejor y al final regresa lo generado:
Código php:
Ver original
  1. function test() {
  2.        $result = '';
  3.        for($i = 0; $i < 5; $i++ ) {
  4.              $result .= "Test $i";
  5.        }
  6.  
  7.        return $result;
  8. }

Saludos.