コード例 #1
0
    

<body>
	<h1><?php 
echo $_SESSION['team'] . ' // Berichte';
?>
</h1> 
	<form name="redakteur" action="<?php 
echo $_SERVER['PHP_SELF'];
?>
" method="post" >
	    
        <br />
		
		<?php 
echo make_navi_red("Berichte", $team);
?>
		<br /><br />
        <a class="button" href="add_bericht.php" title="Neuer Bericht">Neuer Bericht</a>
		
        <br /> <br />
		
		<table class="tabellenkopf">
            <tr>
                <td width="44px" style="background-color: #0099FF"></td>
                <td id="time">Hochgeladen:</td>
                <td id="title">Titel:</td>
                <td id="gamedate">Spieldatum:</td>
            </tr>
        </table>
		
コード例 #2
0
    

<body>
	<h1><?php 
echo $_SESSION['team'] . ' // Galerie';
?>
</h1> 
	<form name="galerie_manager" action="<?php 
echo $_SERVER['PHP_SELF'];
?>
" method="post" >
	    
        <br />
		
		<?php 
echo make_navi_red("Galerie", $team);
?>
		<br /><br />
        <a class="button" href="add_pic.php" title="Neues Bild">Neues Bild</a>
		
        <br /> <br />
		
		<?php 
$c1 = 0;
$verzeichnis = 'bilder/teams/Galerie/1516/' . $team . '/';
$handle = openDir($verzeichnis);
$html = '<table><tr>';
while ($datei = readDir($handle)) {
    if ($datei != "." && $datei != ".." && !is_dir($datei)) {
        if (strstr($datei, ".jpeg") || strstr($datei, ".png") || strstr($datei, ".jpg") || strstr($datei, ".JPEG") || strstr($datei, ".PNG") || strstr($datei, ".JPG")) {
            $verzeichnis_datei = $verzeichnis . $datei;
コード例 #3
0
<?php

session_start();
require 'src/auth.php';
include 'src/navi_red.php';
$team = $_SESSION['team'];
$spieler = $mysql->get_spieler($team);
?>
<!DOCTYPE html>
<html>
<head>
    <title>Handball-Dachau // Verwaltung</title>
    <meta charset="UTF-8">
    <meta name="description" content="Handballer des ASV Dachau">
    <link href="src/style_red.css" type="text/css" rel="stylesheet">
</head>
    
<body>
	<h1><?php 
echo $_SESSION['team'] . ' // Spieler';
?>
</h1> 
	<form name="verwaltung" action="<?php 
echo $_SERVER['PHP_SELF'];
?>
" method="post" >
	    
        <br />
		
		<?php 
echo make_navi_red("Spieler", $team);
コード例 #4
0
ファイル: upload.php プロジェクト: KiwiJuicer/handball-dachau
<!DOCTYPE html>
<html>

<head>
    <title>Handball-Dachau // Spielplan-Upload</title>

    <meta charset="UTF-8">
    <meta name="description" content="Handballer des ASV Dachau">
    <link href="src/style_red.css" type="text/css" rel="stylesheet">
</head>

<body>
	<h1><?php 
echo $_SESSION['team'] . ' // Spielplan-Upload';
?>
</h1> 
    <br />
	<?php 
echo make_navi_red("Neuer Spielplan", $team);
?>
	<br /><br />
	<form name="DateiUpload" id="DateiUpload" method="post" action="<?php 
echo $_SERVER['PHP_SELF'];
?>
" enctype="multipart/form-data">
		<input type="file" name="datei" id="datei">
		<br /><br />
		<input class="button" type="submit" name="submitbutton" id="submitbutton" value="Datei hochladen">
	</form>
</body>
</html>