<?php
include("prepend.php");
if(!empty($step1Update)) {
if($method == "install") {
header("Location: install.php");
} elseif($method == "update") {
header("Location: update.php");
}
exit();
}
ob_start();
$tpl->display("select.template");
$output = ob_get_contents();
ob_end_clean();
include("append.php");
?>