Skip to content

Instantly share code, notes, and snippets.

@Ozerich
Created September 20, 2010 16:42
Show Gist options
  • Save Ozerich/588190 to your computer and use it in GitHub Desktop.
Save Ozerich/588190 to your computer and use it in GitHub Desktop.
<?php
require_once("/smarty/libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->template_dir = "./templates";
$smarty->compile_dir = "./templates/compile";
$left_menu = $smarty->fetch("sidebar-reg.html");
$content = $smarty->fetch("registration-form.html");
$smarty->assign("left_menu", $left_menu);
$smarty->assign("right_content", $content);
$smarty->display("main_template.html")
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment