<?
    
if (isset($_GET['src']))
    {
        
highlight_file(__FILE__);
        die();
    }
?>
<!doctype html>
<html lang="en-US">
<head>
    <meta charset="utf-8">
    <title>Contact Form with PHP</title>
    <meta name="description" content="PHP mail to form">
    <meta name="author" content="Cody Swartz">
    
    <!-- CSS -->
    <style>

* {
    margin: 0px;
    padding: 0px;
    boarder: 0px;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    background-color: #ABC;
}

#container {
    width: 80%;
    margin: 20px auto; 
    padding: 10px; 
    border: 4px solid #BCD; 
    border-radius: 10px;
}

h1 {
    text-align: center; font-weight: normal;
    margin-bottom: 50px;
}

form {
    width: 80%;
    margin: 20px auto; 
    padding: 10px; 
    border: 4px solid #123; 
    border-radius: 10px; 
    overflow: hidden;
}

label {
    display: block; 
    color: #444; 
    padding-bottom: 4px;
}

input, textarea {
    display: block;
    margin-bottom: 10px;
    width: 300px;
    color: #CFC; background-color: #333;
    padding: 4px;
    font-size: 20px;
    font-family: Verdana, Geneva, sans-serif;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=text], input[type=email {
    height: 30px;
}

input[type=submit] {
    width: 100px; height: 40px; border: 3px solid #090;
    border-radius: 5px; float: right;
}

    </style>
    <!-- JS -->
    
</head>

<body>
<div id="container">
    <h1>Contact Form with PHP</h1>
    <?
        
//show_source(__FILE__);
        
$fname $_POST['fname'];
        
$lname $_POST['lname'];
        
$email $_POST['email'];
        
$message $_POST['message'];
        
$headers "From: ctsstc@gmail.com" "\r\n" "Reply-To:".$_POST['email'] . "\r\n";
        
        
//echo "<pre>";
        //print_r($_POST);
        //echo "</pre>";
        
        // check to see if the form was already submitted
        
if ( isset($_POST['send']) ) 
        {
            
// minimal form validation check that everything is not empty
            
if ( !empty($fname) && !empty($lname) && !empty($email) && !empty($message) ) 
            {
                
// create the body of the message
                
$body "name: $fname \n\nMessage: $message";
                
$body wordwrap($body70);
                
mail("cswartz@cocc.edu""form message"$body$headers);
                
                
// send user a confirmation
                //header("Location:http://www.webdev99.cocc-webdev.org/thanks.html");
                
echo "<p class='thanks'>Thank you for contacting us</p>";
                
                
// clear the form if the confirmation is on form page
                
unset($fname$lname$email$message);
            }
            else
            {
                echo 
"<p class='warning'>Please fill out the form</p>";
            }
        }
        
        if ( !isset(
$_POST['send']) || empty($fname) || empty($lname) || empty($email) || empty($message) ) 
        {
    
?>
    <form method="post" action="index.php">
        <label for="fname">First Name:</label><input type="text" name="fname" id="fname" value="<? echo $fname?>">
        <label for="lname">Last Name:</label><input type="text" name="lname" id="lname" value="<? echo $lname?>">
        <label for="email">E-mail Address:</label><input type="email" name="email" id="email" value="<? echo $email?>">
        <label for="message">Message:</label><textarea name="message" id="message" value="<? echo $message?>"></textarea>
        <input type="submit" name="send" value="Send">
    </form>
    <?
        
}
    
?>
</div>
</body>
</html>