Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/12/2009, 23:56
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Respuesta: Complicado con mvc

Deja como te comente, regresa la variable $clientes y para imprimir solo cicla esa variable:
Código PHP:
Ver original
  1. <?php
  2. $clientes = $ClienteSvc->pasajeDatos();
  3. ?>
  4. <html>
  5.     <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7.         <title></title>
  8.     </head>
  9.     <body>
  10. <?php
  11. foreach ($clientes as $cliente){
  12.     echo $cliente->getNombre();
  13. }
  14.  
  15. ?>
  16.     </body>
  17. </html>

Saludos.