this is the code on my php page
<?php
error_reporting(E_ALL ^ E_NOTICE);
require_once("includes/functions.mysql.php");
require_once("includes/config.php");
$posted=$_POST;
array_walk($posted, "postSanitize");
$formname=$posted["formname"];
if ($formname == "") {
// we have nothing to process, bail
exit;
}
dbconnect();
switch($formname){
case "demo":
$sql="insert into demo values(
'',
".sql_quoted($posted["name"]).",
".sql_quoted($posted["company"]).",
".sql_quoted($posted["address"]).",
".sql_quoted($posted["city"]).",
".sql_quoted($posted["province"]).",
".sql_quoted($posted["postal_code"]).",
".sql_quoted($posted["phone"]).",
".sql_quoted($posted["country"]).",
".sql_quoted($posted["email"]).",
".sql_quoted($posted["fax"]).",
".sql_quoted($posted["facility"]).",
".sql_quoted($posted["units"]).",
".sql_quoted($posted["how"]).",
".sql_quoted($posted["comments"]).",
".sql_quoted($posted["method"])."
)";
$completed=mysql_query($sql);
/* start demo mail details */
$mailto = "myemail@email.com";
$mailfrom = "support@windmill-software.com";
$subject = "PM Worx Demo Request";
$body="";
$body.="Name: ".$posted["name"]."\r\n";
$body.="Company: ".$posted["company"]."\r\n";
$body.="Address: ".$posted["address"]."\r\n";
$body.="City: ".$posted["city"]."\r\n";
$body.="Province/State: ".$posted["province"]."\r\n";
$body.="Postal Code/Zip: ".$posted["postal_code"]."\r\n";
$body.="Phone: ".$posted["phone"]."\r\n";
$body.="Country: ".$posted["country"]."\r\n";
$body.="Email: ".$posted["email"]."\r\n";
$body.="Fax: ".$posted["fax"]."\r\n";
$body.="Type of Facility: ".$posted["facility"]."\r\n";
$body.="# of Units: ".$posted["units"]."\r\n";
$body.="How: ".$posted["how"]."\r\n";
$body.="Comments: ".$posted["comments"]."\r\n";
$body.="Chosen Method: ".$posted["method"]."\r\n";
/* end demo mail details */
# send email notification and capture result (true/false)
$notified=notifyByEmail($mailto,$subject,$body,$ma ilfrom);
if ($completed) {
# sql worked, this is the message that displays on page for a success
# a limiter against $notified being set true can be placed here if desired/required at some point ... if $notified is not set to true then the notification email did not send properly
# pick appropriate message dependong on the method of delivery chosen by user in form
switch($posted["method"]) {
case "download":
# this is the message that displays on page for a success for download
$message='<img src="http://www.webmaster-talk.com/images/thankyou_democd.gif" width="239" height="49"><br /><br />
<a href="Downloads/Current/PMW.exe"><img src="http://www.webmaster-talk.com/images/logo_demo.gif" alt="Click here to download your Demo" /></a>
<p>We have received your request for a PM Worx demo download. To download the demo, <A HREF="Downloads/Current/PMW.exe">click here</A>.
Remember, you will need to contact Windmill in order to register the demo after it has been installed.</p>
';
break;
case "mail":
# this is the message that displays on page for a success for mailed CD
$message='<img src="http://www.webmaster-talk.com/images/thankyou_democd.gif" width="239" height="49"><br /><br />
<p>We have received your request for a PM Worx demo CD. You should receive the CD in the mail in a few days.
Remember, you will need to contact Windmill in order to register the demo after it has been installed.</p>
';
break;
}
} else {
# there was an error processing sql, inform user to try again or request assistance
$message='There was an error processing your demo request. Please hit the back button in your browser and try again. If the problem persists please contact us directly for your demo request.';
}
break;
case "subscribe":
$sql="insert into subscribe values(
'',
".sql_quoted($posted["name"]).",
".sql_quoted($posted["company"]).",
".sql_quoted($posted["title"]).",
".sql_quoted($posted["city"]).",
".sql_quoted($posted["address"]).",
".sql_quoted($posted["postal_code"]).",
".sql_quoted($posted["province"]).",
".sql_quoted($posted["country"]).",
".sql_quoted($posted["phone"]).",
".sql_quoted($posted["email"]).",
".sql_quoted($posted["referred"]).",
".sql_quoted($posted["referrername"])."
)";
$completed=mysql_query($sql);
/* start subscribe mail details */
$mailto = "
myemail@email.com";
$mailfrom = "worxwire@windmill-software.com";
$subject = "WorxWire Subscription";
$body="";
$body.="Name: ".$posted["name"]."\r\n";
$body.="Company: ".$posted["company"]."\r\n";
$body.="Title/Position: ".$posted["title"]."\r\n";
$body.="Address: ".$posted["address"]."\r\n";
$body.="City: ".$posted["city"]."\r\n";
$body.="Province/State: ".$posted["province"]."\r\n";
$body.="Postal Code/Zip: ".$posted["postal_code"]."\r\n";
$body.="Phone: ".$posted["phone"]."\r\n";
$body.="Country: ".$posted["country"]."\r\n";
$body.="Email: ".$posted["email"]."\r\n";
$body.="Referred?: ".$posted["referred"]."\r\n";
$body.="Referred By: ".$posted["referrername"]."\r\n";
/* end subscribe mail details */
# send email notification and capture result (true/false)
$notified=notifyByEmail($mailto,$subject,$body,$ma ilfrom);
if ($completed) {
# sql worked, this is the message that displays on page for a success
$message='<p>Thank you. You are now subscribed.</p>
<p>Watch your inbox for the next edition of the WorxWire.</p>
';
} else {
# there was an error processing sql, inform user to try again
$message='There was an error processing your subscription. Please hit the back button in your browser and try again. If the problem persists please contact us.';
}
require_once("includes/pagetop.php");
echo $message;
require_once("includes/pagebottom2.php");
break;
case "user_conference":
$sql="insert into user_conference values(
'',
".sql_quoted($posted["name"]).",
".sql_quoted($posted["company"]).",
".sql_quoted($posted["title"]).",
".sql_quoted($posted["city"]).",
".sql_quoted($posted["address"]).",
".sql_quoted($posted["postal_code"]).",
".sql_quoted($posted["province"]).",
".sql_quoted($posted["country"]).",
".sql_quoted($posted["phone"]).",
".sql_quoted($posted["email"])."
)";
#echo $sql;
$completed=mysql_query($sql);
/* start user_conference mail details */
$mailto = "myemail@email.com";
$mailfrom = "support@windmill-software.com";
$subject = "2007 User Conference Registration";
$body="";
$body.="Name: ".$posted["name"]."\r\n";
$body.="Company: ".$posted["company"]."\r\n";
$body.="Title/Position: ".$posted["title"]."\r\n";
$body.="Address: ".$posted["address"]."\r\n";
$body.="City: ".$posted["city"]."\r\n";
$body.="Province/State: ".$posted["province"]."\r\n";
$body.="Postal Code/Zip: ".$posted["postal_code"]."\r\n";
$body.="Phone: ".$posted["phone"]."\r\n";
$body.="Country: ".$posted["country"]."\r\n";
$body.="Email: ".$posted["email"]."\r\n";
/* end user_conference mail details */
# send email notification and capture result (true/false)
$notified=notifyByEmail($mailto,$subject,$body,$ma ilfrom);
if ($completed) {
# sql worked, this is the message that displays on page for a success
$message="<p>Thank you. Your registration will be confirmed shortly.</p>
<p>See you September 18th!</p>";
} else {
# there was an error processing sql, inform user to try again
$message='There was an error processing your demo registration. Please hit the back button in your browser and try again. If the problem persists please contact us directly.';
}
break;
}
dbclose();
# and Lastly, we display the HTMLpage with the message we loaded earlier
require_once("includes/pagetop.php");
echo $message;
include("includes/pagebottom2.php");
?>
basically someone signs up for something and an email is sent to
myemail@email.com displaying the persons information, but when it gets sent to me, the spaces inbetween name and address are large, im attempting to remove those spaces.