Skip to content

Instantly share code, notes, and snippets.

@Seich
Created July 11, 2011 23:32
Show Gist options
  • Save Seich/1077050 to your computer and use it in GitHub Desktop.
Save Seich/1077050 to your computer and use it in GitHub Desktop.
Routs, example 2
<?php
require 'routs.php';
Rout::get('home', 'homeFunction');
function homeFunction($params) {
templateManager::Render('home.tpl', $params);
}
Rout::post('home', function($params){
mail('seich@martianwabbit.awesome', 'Some Subject', emailHandler::Render('mailTemplate.tpl', $params));
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment