=_('Upload Your Recording')?>
'.$_SESSION['error_msg'].'' : "";
if (isset($_GET['step']))
{
if ($_GET['step'] == 'location') {
include("location.php");
} else if ($_GET['step'] == 'metadata') {
include("metadata.php");
} else if ($_GET['step'] == 'verify') {
include("verify.php");
}
else if ($_GET['step'] == 'upload') {
include("upload.php");
}
else {
include("location.php");
}
} else {
include("upload.php");
}
?>