The official web hosting company for the BlueVoda Website Builder. You are currently viewing our support forum as a guest which gives you limited (read only) access. By joining our support forum you will be able to ask questions, participate in discussions and receive assistance. Registration is fast and simple. Click Here To Join our support forum today! We look forward to helping you build and publish a fantastic website.
[QUOTE=Pablo]First of all this script has nothing to do with BlueVoda and is provided for support purposes only. It is created to work around bugs and design flaws in 3rd party products. The script is provided "AS IS" without warranty of any kind. However it seems to work for most of the users.
It MUST have the .php externsion not .txt or .php.txt
Please replace all
How do I replace all ;with <? What is <? I see the uploaded file has the .php.txt. I tried to change it by right click it and go to properties. I tried to change it that way and it doesn't work. I know I must have done it incorrectly. Please give me step by step instruction. Thanks.
I did the insert in the beginning of body with the email address changed to lct@lctfinejewelers.com and I have upload the feedback.php in the domain using the ftd manager. When I tried to submit the form for testing, it says the page cannot be found. I must have done something wrong. I changed the text object properties to feedback.php and set it to post and cleared the encoding type just like what you suggested too. Hmmmmmmmmmm. HELP!
The error indicates that you need a field (editbox) with the name 'email' in your form to make the script work.
Otherwise the script does'nt know the senders email address.
am i one of those "just wont work cases"?
Originally posted by Pablo
The error indicates that you need a field (editbox) with the name 'email' in your form to make the script work.
Otherwise the script does'nt know the senders email address.
the form is on the right hand side...
my GX_TEAM.php:
<HTML>
<HEAD>
<TITLE>Succesfully requested contact from The GX Team</TITLE>
</HEAD>
<BODY>
<H2>Thank you for your request. You will recieve a response shortly. In the meantime please feel free to register in
the Community Bulletin Board, and explore the site at your liesure.</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "contact_gx@graphxntrix.com";
$mailsubj = "Contact Us";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>
</BODY>
</HEAD>
Comment