Created
June 18, 2012 13:51
-
-
Save tomnomnom/2948470 to your computer and use it in GitHub Desktop.
Very Simple MVC
This file contains 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 | |
// "M" | |
function getUsers(){ | |
// Fetch from DB | |
// ... | |
return $arrayOfUsers; | |
} | |
// "C" | |
$users = array(); | |
if (userIsAuthorised()){ | |
$users = getUsers(); | |
} | |
// "V" | |
?> | |
<ul> | |
<?php foreach($users as $user): ?> | |
<li><?php echo htmlentities($user, ENT_QUOTES, 'UTF-8'); ?></li> | |
<?php endforeach; ?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment