We have hundreds of PHP forms which are now inactive which we believe to be the result of migrating our websites from one server to another.
They are currently running the same versions of PHP however the original O/S was Redhat (linux kernal 3.2.3-20) and now the sites are deployed on Fedora Core 4.
The form sends, however there is not any information. They are simple forms which had been working before the server migration such as:
{
$email = "Name:\t$faq_name\nPhone Number:\t$faq_phonenumber\nEmail:\t$faq_email\nProblem location:\t$faq_location\nDescription:\t$faq_description\nComments:\t$faq_comm ents\n\n";
$to = "[email protected]";
$subject = "Problem with the Building Request Form";
mail($to, $subject, $email);
include("thanks.php");
}
Any ideas?!? All questions, comments, suggestions, fixes greatly appreciated!!!
HELP!!!!
They are currently running the same versions of PHP however the original O/S was Redhat (linux kernal 3.2.3-20) and now the sites are deployed on Fedora Core 4.
The form sends, however there is not any information. They are simple forms which had been working before the server migration such as:
{
$email = "Name:\t$faq_name\nPhone Number:\t$faq_phonenumber\nEmail:\t$faq_email\nProblem location:\t$faq_location\nDescription:\t$faq_description\nComments:\t$faq_comm ents\n\n";
$to = "[email protected]";
$subject = "Problem with the Building Request Form";
mail($to, $subject, $email);
include("thanks.php");
}
Any ideas?!? All questions, comments, suggestions, fixes greatly appreciated!!!
HELP!!!!