asdf
This commit is contained in:
@@ -1,8 +1,18 @@
|
||||
<?php
|
||||
include '../head.php';
|
||||
echo '<h1>Auftrags Ansicht</h1>';
|
||||
$id= $_GET['id'];
|
||||
echo "<h2>Auftrag $id</h2>";
|
||||
include '../connect.php';
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?php
|
||||
echo $id;
|
||||
|
||||
include '../tail.php';
|
||||
?>
|
||||
|
||||
18
app/view/kunde.php
Normal file
18
app/view/kunde.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
include '../head.php';
|
||||
echo '<h1>Kunden Ansicht</h1>';
|
||||
$id= $_GET['id'];
|
||||
echo "<h2>Kunde $id</h2>";
|
||||
include '../connect.php';
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?php
|
||||
|
||||
|
||||
include '../tail.php';
|
||||
?>
|
||||
5
app/view/view-auftrag.sql
Normal file
5
app/view/view-auftrag.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
select * from Auftrag as a
|
||||
inner join bucht as b on b.`Auftragsnr.`=a.AuftragsNr
|
||||
inner join Kunde as k on k.`Kundenr.`=b.`Auftragsnr.`
|
||||
inner join `führt aus` as f on f.`Auftragsnr.`=a.AuftragsNr
|
||||
inner join Mitarbeiter as m on m.Mitarbeiternummer=f.`Mitarbeiternr.`
|
||||
Reference in New Issue
Block a user