Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 18.116.13.192
<?php
if (isset($_GET[id_season])) {
$_SESSION[id_season] = $_GET[id_season];
}
else if ((isset($_SESSION[id_season]) && $_SESSION[id_season] != '') && ( ! isset($_GET[id_season]) || $_GET[id_season] == '')) {
$_GET[id_season] = $_SESSION[id_season];
}
?>
<?php
include_once('../includes/mysql_connect.php');
include_once('inc/functions.inc.php');
$aDbList = sql_list_dbs($mysql_link);
$iCurrentRow = 0;
$aInputRowClass = array(
'input_off_1',
'input_off_2'
);
if (isset($_GET[id_season]) && $_GET[id_season] != '') {
//if (check_db_exists($_GET[id_season], $mysql_link)) {
$sThisDbExists = true;
//}
//else { $sThisDbExists = false; }
}
?>
<html>
<head>
<title>Administration - www.lhjmq.qc.ca</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<link href="../../css/links.css" rel="stylesheet" type="text/css">
<link href="../../css/table.css" rel="stylesheet" type="text/css">
<link href="../../css/tags.css" rel="stylesheet" type="text/css">
<link href="../../css/text.css" rel="stylesheet" type="text/css">
<script src="scripts/functions.js" language="JavaScript" type="text/javascript"></script>
<style type="text/css">
FORM { margin: 0px; }
INPUT, TEXTAREA, SELECT { border: 1px solid #000000; }
.input_on { background: #FFFFFF; border: 1px solid #B9B9B9; }
.input_off_1 { background: #FFFFFF; border: 1px solid #FFFFFF; }
.input_off_2 { background: #D4E2F8; border: 1px solid #D4E2F8; }
.sbutton { background: #E8E9F5; border: solid #546085 1px; }
.vheader { writing-mode: tb-rl; }
.blue_row { background: #D4E2F8; }
</style>
|