// Filter GET values
if(!empty($_GET)){
foreach($_GET as $k=>$v){
$_GET[$k] = filter_input(INPUT_GET,$k,FILTER_SANITIZE_STRING);
}
}
// Get and store data.
$res = $_GET[‘r’];
// Check result and print appropriate info
if(isset($res) && ($res == 1 || $res == 2)) {
$date = $_GET[‘date’];
$webId = $_GET[‘wId’];
$jLink = $_GET[‘jUrl’];
$uId = $_GET[‘rKey’];
echo ‘
Registration Successful
‘;
echo ‘
if($res == 1) {
echo ‘
You have successfully registered for the following Webinar:
‘;
} else if($res == 2) {
echo ‘
It appears you have already registered for the following Webinar:
‘;
}
echo ‘
Creating Pure HTML5 Digital Publications
‘.$date.’
‘;
echo ‘
‘;
if($res == 1) {
echo ‘
You will receive an email shortly with instructions on how to join the webinar.
‘;
} else {
echo ‘
You should have received an email with instructions on how to join the webinar. Please check your inbox and spam folders.
‘;
}
echo ‘
Add webinar to your Outlook calendar.
‘;
echo ‘
echo ‘
System Requirements
PC-based attendees
Required: Windows® 8, 7, Vista, XP or 2003 Server
Macintosh®-based attendees
Required: Mac OS® X 10.6 or newer
Mobile attendees
Required: iPhone®, iPad®, Android™ phone or Android tablet
For tips on using your computer\’s microphone and speakers with GoToWebinar, please
click here.’;
echo ‘
‘;
} else {
echo ‘
Something went wrong
‘;
echo ‘
Registration for the webinar has failed. This can happen for a number of reasons:
- The webinar you selected has already started or has been completed.
- The GoToMeetings website is experiencing difficulties.
- The URL parameters have been altered.
If you continue to experience difficulties, then please contact sales@3dissue.com.
‘;
}
[/php]