I have a flash form and sends data via email. Would anyone know of a way to make a post in the forums by using the data sent by a flash form?
Part of my email.php
PHP Code:
<?php
$sendTo = "webmaster@website.com";
$subject = "Recruitment Form Submission";
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "Return-path: " . $_POST["email"];
$game_name = "Game_Name: " . $_POST["game_name"]."<br>" ." Location: ". $_POST["location"];
mail($sendTo, $subject, $game_name, $headers);
?>