Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/02/2009, 14: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, 10 meses
Puntos: 2135
Respuesta: Imprimir html

De hecho en dado caso es con funciones de output buffering:
Código php:
Ver original
  1. <?php
  2. ?>
  3. <html>
  4. <foo></foo>
  5. </html>
  6. <?php
  7. $contents = ob_get_contents();
  8. var_dump($contents);
  9. ?>

Saludos