Files
frisoer-anwendung/app/view/kunde.php
2021-06-12 11:31:28 +02:00

19 lines
190 B
PHP

<?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';
?>