Skip to content

Instantly share code, notes, and snippets.

@Seich
Created July 11, 2011 23:26
Show Gist options
  • Save Seich/1077044 to your computer and use it in GitHub Desktop.
Save Seich/1077044 to your computer and use it in GitHub Desktop.
Routs, Example 1
<?php
require 'routs.php';
Rout::get('home', 'homeFunction');
function homeFunction($params) {
templateManager::Render('home.tpl', $params);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment