28 lines
544 B
PHP
Executable File
28 lines
544 B
PHP
Executable File
<?php
|
|
|
|
require "header.php";
|
|
|
|
includeHTMLHeader();
|
|
|
|
$_SESSION['currentalbum'] = 0;
|
|
|
|
?>
|
|
<!-- insert the page content here -->
|
|
<?php
|
|
if ( $currentuser->isLoggedIn() ) {
|
|
echo "<div class='textlink' id='btn_refresh'>REFRESH</div>\n";
|
|
}
|
|
?>
|
|
<div class="albumdetails hidden" id="albumdetails">
|
|
<h2><b>Album Title:</b> <span id="albumtitle"></span></h2>
|
|
<h2>Album Description:</h2>
|
|
<div id="albumdescription"></div>
|
|
</div>
|
|
<div id="albumcontents">
|
|
</div>
|
|
<?php
|
|
|
|
includeHTMLFooter("scalemodels.js");
|
|
|
|
// vim: set ts=3:sw=3
|