-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess-contact.php
44 lines (42 loc) · 1.57 KB
/
process-contact.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Message Set - Chevrolet Corvette C1</title>
<!-- referencing the proper CSS file -->
<link rel="stylesheet" media="screen" href="css/style.css">
</head>
<body>
<header>
<!-- Corvette's logo from 1953 as page header -->
<img src="images/logo.png" alt="Corvette C1 Logo"/>
<!-- navigational menu -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="learn-more.html">Learn More</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="buy.php">Buy</a></li>
<li><a href="contact-us.php">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact us - Message sent</h1>
<?php
//Checking all the required information
$fname = $_POST['fname'];
$lname = $_POST['lname'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$text = $_POST['text'];
//Sending a feedback to the user
echo('<p> Thank you, '.$fname.' for your feedback. We will answer your request as soon as possible through email using: '.$email. ' or through phone using '.$phone. '.</p>'); //PROBLEM, FIX IT
?>
</main>
<footer>
<p><a href="http://www.chevrolet.com/corvette-sports-cars.html" title="The official Corvette Website">Official Covette Website</a> | <a href="http://www.chevrolet.com/" title="The official Chevrolet Website">Official Chevrolet Website</a> | <a href="credits.html" title="Credits for this website">Credits</a></p>
</footer>
</body>
</html>