Files
phpstorm/php-s1/workshop4/Views/abouttemplate.phtml
2025-02-06 12:30:01 +00:00

8 lines
590 B
PHTML
Executable File

<?php require('template/header.phtml') ?>
<h3> How this MVC Template works </h3>
<p>Model-View-Controller (MVC) is an architectural pattern used in software engineering.</p><br>
<p>This MVC template takes a <i>Controller</i>, which responds to user inputs by gathering data, validating it, and passing to a <i>Model</i></p>
<p>The Model is typical to the function of a class, taking the inputs and manipulating it for the desired output to the <i>View</i></p>
<p>The View is what is then rendered to the user to return the results of the Model</p>
<?php require('template/footer.phtml') ?>