view embedded_player.php @ 22:1f375b7d75fd tip

updated warning for breaks during test
author Giulio Moro <giuliomoro@yahoo.it>
date Fri, 13 May 2016 19:01:08 +0100
parents d2eb0e6ccaaf
children
line wrap: on
line source
<?php
if(isset($_GET['v'])){
  $video_id = $_GET['v'];
} else {
	error('no video ID specified');
}
if(isset($_GET['returnUrl'])){
  $returnUrl = $_GET['returnUrl'];
} else {
}

?>
<html>
<head></head>
<body style="text-align: center">

<iframe width="672" height="378" src="https://www.youtube.com/embed/<?php echo $video_id ?>" frameborder="0" allowfullscreen></iframe>
<div style="text-align: left; margin: auto; margin-top: 10px; width: 80%; min-width: 500px; max-width: 800px;">
Watch the video above to learn more about the characteristics of the sounds produced by the Hammond organ.
This will serve as a training for the rest of the listening test.
Once you are done watching the video, click <a href="<?php echo $returnUrl?>">here</a> to continue with the test.
</div>
</body>
</html>