.
*/
include("./include/include.php");
page_header();
if( substr(md5(SECRET.$_GET['g'].$_GET['f'].$_GET['b']), 0, 12) == $_GET['c'] ) {
$appl_id = -1;
$invite['FirstName'] = $_GET['g'];
$invite['LastName'] = $_GET['f'];
$invite['BodyCode'] = strtoupper($_GET['b']);
$invite['JoinStatutory'] = true;
$invite['SubscribeAEGEE_L'] = true;
$invite['SubscribeAGORA_L'] = true;
$invite['SubscribeANNOUNCE_L'] = true;
include("./include/application.php");
}else {
echoln("The invitation is not valid.");
echoln("
Please make sure you copied the full url you received, and not only the first part in case it was split over more than one line.");
}
page_footer();
?>