Has anyone used GoDaddy's gdform.php?

For a flash contact form? The script I would have used if godaddy’s gdform.php wasn’t mandatory would be


<?php 
$to = "[EMAIL="****@l.com"]****@***.com[/EMAIL]"; 
$subject = "Contact Form";
 
$headers = "From: " . $_POST["email"]; 
$headers .= "<" . $_POST["email"] . ">
"; 
$headers .= "Reply-To: " . $_POST["email"] . "
"; 
$headers .= "Return-Path: " . $_POST["email"]; 
$message .= "This message has been sent from your Contact Form

";
$message .= "Name: " . $_POST["name"] . "
";
$message .= "Email: " . $_POST["email"] . "
";
$message .= "Message: " . $_POST["message"] . "
";
mail($to, $subject, $message, $headers); 
?>

godaddy’s gdform.php is:


<?php
$request_method = $_SERVER["REQUEST_METHOD"];
if($request_method == "GET"){
$query_vars = $_GET;
} elseif ($request_method == "POST"){
$query_vars = $_POST;
}
reset($query_vars);
$t = date("U");
$fp = fopen("../data/gdform_$t","w");
while (list ($key, $val) = each ($query_vars)) {
fputs($fp,"<GDFORM_VARIABLE NAME=$key START>
");
fputs($fp,"$val
");
fputs($fp,"<GDFORM_VARIABLE NAME=$key END>
");
if ($key == "redirect") { $landing_page = $val;}
}
fclose($fp);
if ($landing_page != ""){
header("Location: [http://".$_SERVER["HTTP_HOST"]."/$landing_page](http://)");
} else {
header("Location: [http://".$_SERVER["HTTP_HOST"]."/](http://)");
}
?>

I found the gdform.php on a forum and copied, pasted and saved it as gdform.php and uploaded it to the root, as others on forums discussing gdform.php seemed to be indicating that is where it is found.