This commit is contained in:
FlyInTheBox 2023-09-11 11:15:39 +02:00
parent ce65a8e453
commit e05997cbff
5 changed files with 60 additions and 1 deletions

View file

@ -5,6 +5,7 @@
<?php
$query = 'SELECT * FROM czytelnicy';
$result = mysqli_query($conn, $query);
echo '<p>Zawiera ' . mysqli_num_rows($result) . ' wierszy</p>';
if (mysqli_num_rows($result) > 0) {
echo '<table>';
echo '<tr><th>Numer czytelnika</th><th>Imię i nazwisko</th><th>Data_ur</th><th>Ulica</th><th>Kod</th><th>Miasto</th><th>Data_zapisania</th></tr>';

View file

@ -1 +1,18 @@
<h1>Tabela działy</h1>
<?php
$query = 'SELECT * FROM dzialy';
$result = mysqli_query($conn, $query);
echo '<p>Zawiera ' . mysqli_num_rows($result) . ' wierszy</p>';
if (mysqli_num_rows($result) > 0) {
echo '<table>';
echo '<tr><th>Id_dzial</th><th>Nazwa</th><th><a class="add" href="?PAGE=dzialy_dodaj">&#10010;</a></th></tr>';
while ($row = mysqli_fetch_assoc($result)) {
echo '<tr><td>' . $row['Id_dzial'] . '</td><td>'
. $row['Nazwa'] . '</td><td><a href="dzialy_dodaj.php">edycja </a></td></tr>';
}
echo '</table>';
} else {
echo 'brak danych';
}
?>

View file

@ -0,0 +1,19 @@
<h1>Nowe dane tabeli działy</h1>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") // Zapisz dane z formularza do bazy [INSERT]
{
$Id_dzial = $_POST['Id_dzial'];
$Nazwa = $_POST['Nazwa'];
$query = "INSERT INTO dzialy (Id_dzial, Nazwa) values ('".$Nazwa."')";
$result = mysqli_query($conn, $query);
} else {
echo '<form action="?PAGE=dzialy_dodaj" method="post">
<table>
<tr><td>Id_dzial</td><td><input type="text" name="Id_dzial" id="Id_dzial" disabled></td></tr>
<tr><td>Nazwa</td><td><input type="text" name="Nazwa" id="Nazwa"></td></tr>
<tr><td colspan="2" style="text-align: center"><button type="submit">Zapisz</button></td></tr>
</table>
</form>';}
?>

View file

@ -1 +1,20 @@
<h1>Tabela pracownicy</h1>
<?php
$query = 'SELECT * FROM pracownicy JOIN stanowiska ON pracownicy.Id_stanowisko = stanowiska.Id_stanowisko';
$result = mysqli_query($conn, $query);
echo '<p>Zawiera ' . mysqli_num_rows($result) . ' wierszy</p>';
if (mysqli_num_rows($result) > 0) {
echo '<table>';
echo '<tr><th>Id_pracownika</th><th>Nazwisko</th><th>Imie</th><th>Stanowisko</th><th>Miasto</th><th>Data_Zatrudnienia</th><th>Wynagrodzenie</th></tr>';
while ($row = mysqli_fetch_assoc($result)) {
echo '<tr><td>' . $row['Id_pracownika'] . '</td><td>'
. $row['Nazwisko'] . '</td><td>' . $row['Imie'] . '</td><td>' . $row['Nazwa'] . '</td><td>' . $row['Miasto'] . '</td><td>' . $row['Data_zatrudnienia'] . '</td><td>' . $row['Wynagrodzenie'] . '</td></tr>';
}
echo '</table>';
} else {
echo 'brak danych';
}
?>

View file

@ -42,4 +42,7 @@ tr, td, th {
border: 1px solid black;
padding: 3px;
}
table {border-collapse: collapse}
table {border-collapse: collapse}
.add {
text-decoration: none;
}