KLanding/space.php

82 lines
2.1 KiB
PHP
Raw Normal View History

2015-07-02 22:03:57 +01:00
<!--Force IE6 into quirks mode with this comment tag-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
2015-07-02 19:51:14 +01:00
<head>
2015-07-02 22:03:57 +01:00
<link rel="stylesheet" type="text/css" href="css/white.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
<!--This script should appear below your LINK stylesheet tags -->
<script src="styleswitch.js" type="text/javascript">
/***********************************************
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
<script type="text/javascript">
window.onload=function(){
var formref=document.getElementById("switchform")
indicateSelected(formref.switchcontrol)
}
</script>
2015-07-03 13:53:45 +01:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
<style>
.hiddenRow { display: none; }
</style>
<script>
function toggleNextRow(row) {
var nextRow = $(row).next();
nextRow.toggle();
}
</script>
2015-07-02 19:51:14 +01:00
</head>
2015-07-03 11:09:33 +01:00
<?php include 'config.php';?>
2015-07-10 12:37:53 +01:00
<?php
2015-07-05 09:57:32 +01:00
if ($drivespacevisible > "0") {
2015-07-10 12:37:53 +01:00
<?php
require "drives/head.php";
2015-07-05 09:57:32 +01:00
?>
<?php
2015-07-03 14:46:27 +01:00
if ($drive1visible > "0") {
2015-07-05 07:52:52 +01:00
require "drives/drive1.php";
}
?>
<?php
if ($drive2visible > "0") {
require "drives/drive2.php";
2015-07-02 19:51:14 +01:00
}
2015-07-05 07:52:52 +01:00
?>
<?php
2015-07-05 10:51:00 +01:00
if ($drive3visible > "0") {
2015-07-05 07:52:52 +01:00
require "drives/drive3.php";
2015-07-02 19:51:14 +01:00
}
2015-07-05 07:52:52 +01:00
?>
<?php
2015-07-05 10:51:00 +01:00
if ($drive4visible > "0") {
2015-07-05 07:52:52 +01:00
require "drives/drive4.php";
2015-07-02 19:51:14 +01:00
}
2015-07-05 07:52:52 +01:00
?><?php
2015-07-05 10:51:00 +01:00
if ($drive5visible > "0") {
2015-07-05 07:52:52 +01:00
require "drives/drive5.php";
2015-07-02 19:51:14 +01:00
}
2015-07-05 07:52:52 +01:00
?><?php
2015-07-05 10:51:00 +01:00
if ($drive6visible > "0") {
2015-07-05 07:52:52 +01:00
require "drives/drive6.php";
2015-07-02 19:51:14 +01:00
}
2015-07-05 07:52:52 +01:00
?>
<?php
2015-07-05 10:51:00 +01:00
if ($drive7visible > "0") {
2015-07-05 07:52:52 +01:00
require "drives/drive7.php";
2015-07-02 19:51:14 +01:00
}
2015-07-10 12:37:53 +01:00
?> }
2015-07-02 22:03:57 +01:00
</div>
</div>
2015-07-02 19:51:14 +01:00
</html>