This commit is contained in:
2021-06-12 11:31:28 +02:00
parent e578e30897
commit a46b33a02e
7 changed files with 407 additions and 2 deletions

18
app/view/kunde.php Normal file
View 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';
?>