|
I am no expert at PHP, but I have a few things to add.
1) you don't need to put "exit;" (I've never used it at least- might be wrong).
2) You need to specify what the variables mean, and were in the form the information is coming from. So for example...
$message = $_REQUEST['message'];
where you retrieve information from the form.
3) Perhaps try something like this
$message = stripslashes($message1);
so you don't overuse the $message variable. I understand you don't have to, but it makes the script "easier"; if that makes sense (in my humble opinion).
4) If this still doesn't work, try contact your host manager, especially if this script WAS working.
Most likely they removed some sort of software that allows you to not have to declare the variables, and specify where to retrieve the information from in the form you submitted... though I don't know how that'd work.
__________________
"If you say something interesting, people will remember your name" ~ Anonymous
Please login or register to view this content. Registration is FREE. asp <- Irony
Last edited by Zoltar1992; 01-22-2009 at 06:30 PM..
|