view.php 177 Bytes edit raw blame history permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php class View{ function __construct(){ // echo "<p>Vista base</p>"; } function render($nombre){ require 'views/' . $nombre . '.php'; } } ?>