• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyone who knows PHP, please look

danklumpp

Senior member
I have a submit form in my flash document for my website. I am using PHP to communicate with my server, but for some reason, my .php document isn't working. I used Dreamweaver MX 2004 to write it, so...

<?php
$sendTo = "danklumpp@hotmail.com";
$subject = "My Flash Site Reply";
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . "\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-Path: " . $_POST["email"];
$message = $_POST["message"];
mail($sendTo, $subject, $message, $headers);
?>

Is there anything wrong with that? I got this from the link attached below:
Linky
 
Back
Top