Hello
I’m making a form where i want the users to click on a button and a smile in ascii appear. this works so far but then when i send the form the smile in ascii is not sent…
anyone can help?
here is my code:
code to add text to input text box by clickin on a button:
on (release) {
//Movieclip GotoAndPlay Behavior
form.smiles.replaceSel(":) ");
//End Behavior
}
and my php code is:
<?php
$sendTo = " xxx@xxxxx.com";
$subject = "klic";
$headers = "From: " . $_POST["nome"];
$headers .= "<" . $_POST["mail"] .">
";
$headers .= "Reply-To: " . $_POST["mail"];
$message = $_POST["nome"] ."
";
$message.= $_POST["falar"] ."
";
$message.= $_POST["sorrisos"] ."
";
mail($sendTo, $subject, $message, $headers);
?>
if you want to check my fla to better understand here is the fla:
http://www.klicseguro.com/mail/enviarmails.fla
Thanks