Example #1
0
<?php 
//session_start();
require 'src/mysql.php';
include "src/navi.php";
include "src/hauptsponsoren.php";
$top = get_berichte('Top News', "7");
?>
<!DOCTYPE html>
<html>

<head>
    <title>Handball Dachau</title>

    <meta charset="UTF-8">
    <meta name="description" content="Handballer des ASV Dachau">
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">
	<script src="http://code.jquery.com/jquery.min.js"></script>
    <link href="src/style.css" type="text/css" rel="stylesheet">
	<script>
		var bericht_id = 0;
		$(document).ready(function(){
			fill_preview();
			setInterval(fill_preview, 8000);
		});
		
		function fill_preview(){
			var preview_team = $('#newest_team_'+bericht_id).html();
			var preview_titel = $('#newest_titel_'+bericht_id).html();
			var preview_pic = $('#newest_pic_'+bericht_id).html();
Example #2
0
<?php

//session_start();
require 'src/mysql.php';
include "src/navi.php";
include "src/hauptsponsoren.php";
include "src/subnavi.php";
if (isset($_GET['team'])) {
    $team = $_GET['team'];
} else {
    header('Location: teams.php');
}
$berichte = get_berichte($team, '0');
?>
<!DOCTYPE html>
<html>
<head>
    <title>Handball Dachau</title>
    <meta charset="UTF-8">
    <meta name="description" content="Handballer des ASV Dachau">
    <link href="src/style.css" type="text/css" rel="stylesheet">
</head>

<body>
	<header>
	</header>
	
	<div id="main">
	
		<?php 
echo make_navi("");