PHP Classes

File: tests/mvc/views/home/hello.php

Recommend this page to a friend!
  Classes of Aleksey   PHP MVC Project   tests/mvc/views/home/hello.php   Download  
File: tests/mvc/views/home/hello.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP MVC Project
Framework that implements the MVC design pattern
Author: By
Last change:
Date: 5 years ago
Size: 188 bytes
 

Contents

Class file image Download
<?php
use PhpMvc\View;
use
PhpMvc\Html;

$model = '';

View::setTitle('Hello world');
View::injectModel($model);
?>

<!--View file: <?=View::getViewFile()?>-->

<h3>Model</h3>
<?=$model?>