Last active
April 8, 2022 17:26
-
-
Save estefanionsantos/efb3af0835ebb6e8363dae055cc50f44 to your computer and use it in GitHub Desktop.
main.php 01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use App\Helper\ViewHelper; | |
$view = new ViewHelper(); | |
$view->render('home'); | |
# source: src/view/home.php | |
/* | |
<html> | |
<head> | |
<title>home</title> | |
</head> | |
<body> | |
<h1>Title Here</h1> | |
text here | |
</body> | |
</html> | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment