Upload files to 'projektpp'
This commit is contained in:
parent
58a7947d5a
commit
bab254d37a
43
projektpp/trenujwdomu.html
Normal file
43
projektpp/trenujwdomu.html
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html lang="pl">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Trenuj w domu</title>
|
||||||
|
<meta name="description" content="Serwis poświęcony siłowni. />
|
||||||
|
<meta name="keywords" content="gym, fit, gymfit" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
||||||
|
<link href='http://fonts.googleapis.com/css?family=Lato:400,900&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="container">
|
||||||
|
|
||||||
|
<div id="menu">
|
||||||
|
<div id="logo">
|
||||||
|
<img src="png/logo.png" />
|
||||||
|
</div>
|
||||||
|
<div id="menuP">
|
||||||
|
<div class="option"><a href="index.html">Strona główna</a></div>
|
||||||
|
<div class="option"><a href="login.php">Zaloguj</a></div>
|
||||||
|
<div class="option"><a href="rejestracja.php">Dołącz</a></div>
|
||||||
|
<div class="option"><a href="terminarz.html">Terminarz</a></div>
|
||||||
|
<div class="option"><a href="kontakt.html">Kontakt</a></div>
|
||||||
|
</div>
|
||||||
|
<div style="clear:both;"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="content">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer">
|
||||||
|
GymFit. Strona w sieci od 2021r. © Wszelkie prawa zastrzeżone
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -30,7 +30,7 @@
|
|||||||
<div class="option"><a href="index.html">Strona główna</a></div>
|
<div class="option"><a href="index.html">Strona główna</a></div>
|
||||||
<div class="option"><a href="login.php">Zaloguj</a></div>
|
<div class="option"><a href="login.php">Zaloguj</a></div>
|
||||||
<div class="option"><a href="rejestracja.php">Dołącz</a></div>
|
<div class="option"><a href="rejestracja.php">Dołącz</a></div>
|
||||||
<div class="option"><a href="terminaz.html">Terminaż</a></div>
|
<div class="option"><a href="terminarz.php">Terminarz</a></div>
|
||||||
<div class="option"><a href="kontakt.html">Kontakt</a></div>
|
<div class="option"><a href="kontakt.html">Kontakt</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div style="clear:both;"></div>
|
<div style="clear:both;"></div>
|
||||||
|
64
projektpp/usun.php
Normal file
64
projektpp/usun.php
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
if ((!isset($_POST['idzaj'])) || (!isset($_SESSION['zalogowany1'])))
|
||||||
|
{
|
||||||
|
header('Location: admin.php');
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
//Udana walidacja? Załóżmy, że tak!
|
||||||
|
$wszystko_OK=true;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$idzajec = $_POST['idzaj'];
|
||||||
|
|
||||||
|
//Zapamiętaj wprowadzone dane
|
||||||
|
$_SESSION['fr_idzajec'] = $idzajec;
|
||||||
|
|
||||||
|
require_once "connect.php";
|
||||||
|
mysqli_report(MYSQLI_REPORT_STRICT);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
$polaczenie = new mysqli($host, $db_user, $db_password, $db_name);
|
||||||
|
if ($polaczenie->connect_errno!=0)
|
||||||
|
{
|
||||||
|
throw new Exception(mysqli_connect_errno());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
if ($wszystko_OK==true)
|
||||||
|
{
|
||||||
|
//Hurra, wszystkie testy zaliczone, dodajemy gracza do bazy
|
||||||
|
$obecna_data=date("Y-m-d");
|
||||||
|
if ($polaczenie->query("DELETE FROM terminarz WHERE idzajec='$idzajec'"))
|
||||||
|
{
|
||||||
|
$_SESSION['udanarejestracja']=true;
|
||||||
|
header('Location: admin.php');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new Exception($polaczenie->error);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
$polaczenie->close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
catch(Exception $e)
|
||||||
|
{
|
||||||
|
echo '<span style="color:red;">Błąd serwera! Przepraszamy za niedogodności i prosimy o rejestrację w innym terminie!</span>';
|
||||||
|
echo '<br />Informacja developerska: '.$e;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user