19 lines
190 B
PHP
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';
|
|
?>
|