I have an application I use online and am having a bit of a time with. Basically, I use flash for the application and POST the variables to a php page. I am trying to streamline the design so when it comes to my Inbox its easier to read. I want to do this by using HTML tables but can't seem to insert the variables into the tables.
EX:
<?
$to = "youraddresshere.com";
$subject = "Pulling my hair out";
$msg ='
<html>
<body>
<p>
I want this to show: $variable
</p>
</body>
</html>
';
$headers = "Content-type: text/html; charset=iso-8859-1\r\n";
mail($to, $subject, $msg, $headers, "From: My web site\nReply-To: $email\n");
?>
How do I make $variable show the actual variable? Is it even possible?
Thanks in advance for your help!