Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/09/2011, 11:54
phpdevelopment
 
Fecha de Ingreso: mayo-2011
Mensajes: 256
Antigüedad: 13 años, 7 meses
Puntos: 5
Respuesta: No carga todo el file_get_contents

Solucionado llamando..
$this->view->content = eval ('?> '.$contents);

Hay alguna manera de remplazar ese include por otro include com este por ejemplo.
Código PHP:
Ver original
  1. <?php
  2. /*
  3.  * To change this template, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. $test = array('Nombre'=>'Juan','Apellido'=>'Perez');
  8. echo '<div id="items">';
  9. foreach($test as $key=>$t){
  10.     echo $key.':'.$t;echo "<br ></div>";
  11. }
  12. echo '</div>';
  13. ?>

antes de hacer esto , o hay que hacer una vez hecho el eval(), saludos y gracias por la ayuda