Prześlij pliki do ''

This commit is contained in:
Michał Wawrzyniak 2020-12-06 20:15:35 +01:00
parent 0cf1e7ced6
commit 3a25dfa43b
4 changed files with 112 additions and 4 deletions

View File

@ -1,4 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
</head>
<body>
<script type="text/javascript">
function logowanie(formularz)
{
login=formularz.login.value;
haslo=formularz.haslo.value;
if (login==""&&haslo=="")
alert("wprowadz dane");
else if (login=="a"){
window.location.replace("../rejestracja/pacjent.php");
}
else if (login=="b"){
window.location.replace("../rejestracja/recepcjonista.php");
}
else if (login=="c"){
window.location.replace("../rejestracja/lekarz.php");
}
}
</script>
<form action="" name="form">
Login: <input type="text" name="login"><br>
Hasło: <input type="text" name="haslo"><br>
<input type="button" value="wyślij" onClick="logowanie(this.form)">
<input type="button" value="home" onClick="window.location.replace(\"../rejestracja/index.php\")">
</form>
</body>
</html>
<?php
hgjkghjn
?>

12
lekarz.php Normal file
View File

@ -0,0 +1,12 @@
<html>
<body>
<h1>Lekarz</h1>
<script type="text/javascript">
function przekierowanie()
{
window.location.replace("../rejestracja/index.php");
}
</script>
<input type="button" value="home" onClick="przekierowanie()">
</body>
</html>

51
pacjent.php Normal file
View File

@ -0,0 +1,51 @@
<html>
<body>
<h1>Pacjent</h1>
<script type="text/javascript">
function przekierowanie()
{
window.location.replace("../rejestracja/index.php");
}
</script>
<input type="button" value="home" onClick="przekierowanie()">
<table>
<ul>
<li>Anna Kwiatkowska</li>
<li>Jan Kowalewski</li>
<li>Krzysztof Nowak</li>
<ul>
</table>
<?php
/*$polaczenie=mysqli_connect('localhost','root','','rejestracja');
$zapytanie="SELECT `imie`, `nazwisko`,`telefon` FROM `pacjenci` WHERE 1";
$wynik=mysqli_query($polaczenie,$zapytanie);
while($wiersz=mysqli_fetch_row($wynik))
{
print $wiersz[0]." ".$wiersz[1]." ".$wiersz[2]."<br>";
}
print "<br><br>";*/
$polaczenie=mysqli_connect('localhost','root','','rejestracja');
$zapytanie="SELECT `dzien`,`godzina` FROM `wizyty`";
$wynik=mysqli_query($polaczenie,$zapytanie);
print "<table>";
while($wiersz=mysqli_fetch_row($wynik))
{
if($wiersz[0]=='2020-12-13')
{
print "<tr>";
print "<td>".$wiersz[0]." ".$wiersz[1]."</td>";
print "</tr>";
}
else if ($wiersz[0]=='2020-12-14')
{
print "<tr>";
print "<td>".$wiersz[0]." ".$wiersz[1]."</td>";
print "</tr>";
}
}
print "</table><br><br>";
mysqli_close($polaczenie);
?>
</body>
</html>

12
recepcjonista.php Normal file
View File

@ -0,0 +1,12 @@
<html>
<body>
<h1>Recepcjonista</h1>
<script type="text/javascript">
function przekierowanie()
{
window.location.replace("../rejestracja/index.php");
}
</script>
<input type="button" value="home" onClick="przekierowanie()">
</body>
</html>