26 lines
677 B
PHP
26 lines
677 B
PHP
<?php
|
|
session_start();
|
|
include("../scripts/connection.php");
|
|
include("../scripts/functions.php");
|
|
$user_data=check_login($con);
|
|
|
|
if($_SERVER['REQUEST_METHOD'] == "GET") {
|
|
$row = get_result($con, $_GET["m_id"], $_GET['s_id'])->fetch();
|
|
include("header_footer/header.php");
|
|
}
|
|
?>
|
|
<body>
|
|
<div class="headline">
|
|
<h2>Ergebniss bearbeiten</h2>
|
|
</div>
|
|
<div>
|
|
<form method="post">
|
|
<label for="team_name">Mannschaftsname: </label>
|
|
<label for=""><?php echo $row['name']?></label>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
<?php
|
|
$con = null;
|
|
echo file_get_contents("header_footer/footer.html");
|
|
?>
|