예제 #1
0
<?php

include_once "../templates/classEmma.class.php";
if (isset($_POST['btnSubmit'])) {
    Emma::CreateCompetition($_POST['name'], $_POST['org'], $_POST['date']);
    header("Location: /liveresultat/adm/admincompetitions.php");
    exit;
}
include_once "../templates/emmalang_sv.php";
$lang = "sv";
if (isset($_GET['lang']) && $_GET['lang'] != "") {
    $lang = $_GET['lang'];
}
include_once "../templates/emmalang_{$lang}.php";
?>

<html>
<head><title><?php 
echo $_TITLE;
?>
</title>
<link rel="stylesheet" type="text/css" href="../css/style.css">
<meta name="robots" content="noindex">
<script language="javascript">
function colorRow(row)
{
var el = document.getElementById(row);
if (el == null)
  return;
el.style.backgroundColor = "#C0D6FF";
}