utvara
04-05-2007, 12:31 PM
Wanna build your own page and wrap it up in vivvo?
Just put your content on the dotted line :)
<?php
include('include/includes.php');
$main_subject_HTML = 'YOUR CONTENT GOES HERE';
include('include/header.php');
$filename=$root ."$tpl_folder/framework.tpl";
//Alternatively use this if you don't want right column to be displayed
//$filename=$root ."$tpl_folder/framework_withouth_right.tpl";
include('template_scripts/framework.php');
include('include/footer.php');
$template_manager->set_string_template($HTML_output);
$HTML_output = $template_manager->get_output();
$HTML_output = lang_replace($HTML_output);
echo $HTML_output;
mysql_close($connection);
?>
Just put your content on the dotted line :)
<?php
include('include/includes.php');
$main_subject_HTML = 'YOUR CONTENT GOES HERE';
include('include/header.php');
$filename=$root ."$tpl_folder/framework.tpl";
//Alternatively use this if you don't want right column to be displayed
//$filename=$root ."$tpl_folder/framework_withouth_right.tpl";
include('template_scripts/framework.php');
include('include/footer.php');
$template_manager->set_string_template($HTML_output);
$HTML_output = $template_manager->get_output();
$HTML_output = lang_replace($HTML_output);
echo $HTML_output;
mysql_close($connection);
?>