began with implementing edeting for statistics
This commit is contained in:
26
app/public/edit_statistics.php
Normal file
26
app/public/edit_statistics.php
Normal 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");
|
||||
?>
|
||||
Reference in New Issue
Block a user