Esempio n. 1
0
<?php

include "validateadmin.php";
require_once "rdcwebconstants.php";
require_once "dbaction/dbRetrieveInfo.php";
require_once "printUtils.php";
require_once "infoUtils.php";
//Get the information for an existing show
$info = null;
$dates = null;
$logos = null;
if (isset($_GET["showId"])) {
    $sid = $_GET["showId"];
    if ($sid != "create") {
        $info = getShowInfo($sid);
        $dates = getShowDates($sid);
        $logos = getShowLogos($sid);
    }
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Edit Show - Rose Drama Club</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href="styles/rosedramastyle.css" type="text/css" rel="stylesheet" />
</head>
<body>
	<div id="pagecontainer">
		
Esempio n. 2
0
    echo "</div></div>";
}
?>
<html lang="en">
<head>
  <title>The Short Play Series - Rose Drama Club</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href="styles/rosedramastyle.css" type="text/css" rel="stylesheet" />
</head>
<body>
	<div id="pagecontainer">
		
		<?php 
include "header.html";
foreach ($sets as $set) {
    $setinfo = getShowsInShortPlaySet($set["SetID"]);
    $dates = getShowDates($set["SetID"]);
    echo "<h1>";
    echo $set['Quarter'];
    echo "</h1>";
    foreach ($setinfo as $shortshow) {
        writeShowInformation($shortshow);
    }
}
?>
		
		
	</div>
</body>
</html>