Prześlij pliki do ''
This commit is contained in:
parent
0cf1e7ced6
commit
3a25dfa43b
35
index.php
35
index.php
@ -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
12
lekarz.php
Normal 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
51
pacjent.php
Normal 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
12
recepcjonista.php
Normal 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>
|
Loading…
Reference in New Issue
Block a user