{$txt_migrate}";
switch ($subtab) {
//GENERAL TAB
case 'general':
$html = <<
{$txt_general}{$spacer}
{$txt_profile}
{$link_migrate}
HTML;
echo $html;
include ('inc.general.php');
break;
//PROFILE TAB
case 'profile':
$html = <<
{$txt_general}{$spacer}
{$txt_profile}
{$link_migrate}
HTML;
echo $html;
include ('inc.feature.php');
break;
//MIGRATE TAB
case 'migrate':
$html = <<
{$txt_general}{$spacer}
{$txt_profile}{$spacer}
{$txt_migrate}
HTML;
echo $html;
include_once ('inc.migrate.php');
}