Originally posted by URmusicandvideo
Isn't that in line 7??
Thank you sir
I did change the spaces out of the titles. here is the new code
Thank you sir
I did change the spaces out of the titles. here is the new code
Code:
<?php
$emailsubject = 'Judgement Recovery Application' ;
$web = '337@urmusicandvideo.com' ;
$casenumberField = $_POST['Casenu'];
$amountField = $_POST['Amountofjudgment'];
$collectedField = $_POST['Amountcollected'];
$stateField = $_POST['Statejudgment'];
$attnField = $_POST['Represented'];
$defaultField = $_POST['Awardeddefault'];
$dstateField = $_POST['dstate'];
$namejdField = $_POST['JD'];
$addjdField = $_POST['JDaddress'];
$cityjdField = $_POST['JDcity'];
$namejcField = $_POST['JCsName'];
$addjcField = $_POST['JCsAddress'];
$cityjcField = $_POST['JCsCity'];
$phoneField = $_POST['JCsPhone'];
$emailjcField = $_POST['JCsEmail'];
$descrpField = $_POST['Description'];
$judgeField = $_POST['Judgment'];
$body = <<<EOD
<br><hr><br>
Case Number: $casenumber <br>
Amount: $amount <br>
Collected: $collected <br>
State of Judgement: $state <br>
Attorney: $attn <br>
Award by Default: $default <br>
JD Reside Diffent State: $dstate <br>
Name: $namejd <br>
Address: $addjd <br>
City: $cityjd <br>
Phone: $phone <br>
Email: $emailjc <br>
Description: $descrp <br>
Judgement: $judge <br>
EOD;
$headers = "From:emailjcField\r\n";
$headers .= "Content-type: text/html\n\n";
$success = mail($web, $emailsubject, $body, $headers);
$theResults = <<<EOD
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Refresh" content="5; url=http://www.hydeandseik.com/home.html">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Thank you From Hyde & Seik Investigations</title>
<style type="text/css">
<!--
body {
background-image: url(images/bg.jpg);
}
.style7 {
color: #FFFFFF;
font-weight: bold;
font-size: 18px;
}
.style13 {font-family: Broadway}
.style15 {font-size: xx-large}
-->
</style></head>
<body>
<div align="center"></div>
<h1 align="center" class="style7"><span class="style15"><span class="style13">Hyde & Seik</span>®</span><span class="style15"> Thanks you for your application and we will be in contact with you soon.</span></h1>
<p align="center"> </p>
<p align="center"> </p>
</body>
</html>
EOD;
echo "$theResults";
?>
Comment