began with implementing edeting for statistics

This commit is contained in:
2022-06-10 16:20:22 +02:00
parent 20970ebf3a
commit afbfe52688
8 changed files with 55 additions and 69 deletions

View File

@@ -0,0 +1,26 @@
<?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");
?>