GITLAB

Comunidad Desarrollo UBV / Arcu2

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • arcu2
  • libs
  • view.php
  • 74c93ed64   proyecto de arcu con correcciones: contador de caracteres especiales en la resolución Browse Code »
    root
    2021-09-28 06:49:00 -0400  
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';
    }
}

?>