-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.php
More file actions
27 lines (22 loc) · 1.26 KB
/
tutorial.php
File metadata and controls
27 lines (22 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?
require('functionlib.php');
session_start();
if (!isset($_SESSION["studentKey"])) { redirect('index.php'); die(); }
if ($_SESSION["signupStage"] <> 9) { redirect('index.php'); die(); }
require('config.php');
$logresult = write_log($_SESSION["username"] . " viewed the tutorial video");
printhead("p { margin: 0 0 1em 0; }");
startbody();
printmenu_start();
?>
<p><strong>Tutorial Video</strong></p>
<object width="521" height="345"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11506353&server=vimeo.com&show_title=1&show_byline=1&show_portrait=1&color=&fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11506353&server=vimeo.com&show_title=1&show_byline=1&show_portrait=1&color=&fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="521" height="345"></embed></object>
<p><br />You can return to this video at any time through the <strong>Help!</strong> link on the left.</p>
<form method="post" action="home.php">
<input type="submit" value="Proceed to your home page and news feed" />
</form>
<?
printmenu_end();
endbody();
mysql_close();
?>