You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
650 B
27 lines
650 B
3 months ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Untitled Document</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<pre>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Reservation results</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<p>You requested a reservation for <?php echo ($_POST)['nameres'] ?> with the following dates:</p>
|
||
|
<p>From: <?php echo ($_POST['startres']); ?></p>
|
||
|
<p>To: <?php echo ($_POST['endres']); ?></p>
|
||
|
<p>We've received your request and will get back to you within 24 hours.</p>
|
||
|
|
||
|
</body>
|
||
|
</html></pre>
|
||
|
</body>
|
||
|
</html>
|