i have read the sticky thread about the forms
but i don't understand how to upload the file FEEDBACK.PHP to yur domain...?
i'm just a newbie plz help me out with this
i have read the sticky thread about the forms
but i don't understand how to upload the file FEEDBACK.PHP to yur domain...?
i'm just a newbie plz help me out with this
please read the below
http://www.vodahost.com/vodatalk/showthread.php?t=246
VodaHost
Your Website People!
1-302-283-3777 North America / International
07031847328 / United Kingdom
------------------------
Top 3 Best Sellers
Web Hosting - Unlimited disk space & bandwidth.
Reseller Hosting - Start your own web hosting business.
Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)
LOL
i already readed the thread but i don't understand how upload the file FEEDBACK.PHP to your domain??
and most i costume the script?
message from newbie!!
Search for feedback.php on this forum and you will find 101 answers your question.
Here's the complete instruction once again:
Change the form properties (in BlueVoda) to:
Action: feedback.php
Method: POST
EncodingType:
(remove the text/plain, so the field becomes empty)
Now create a new file using Notepad and call it: feedback.php
Enter the following code into the file:
<HTML>
<HEAD>
<TITLE>Thank you for your feedback</TITLE>
</HEAD>
<BODY>
<H2>Thank you for your feedback!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "yourname@yourdomain.com";
$mailsubj = "Feedback form";
$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>
Make sure your form contains an editbox with the name 'email'
Finally upload feedback.php to your web server.
TIP: Instead of creating the feedback page using notepad you can also use BlueVoda:
http://www.vodahost.com/vodatalk/bluevoda-general-issues/809-help-forms.html
and scroll all the way down to see my last post.
Forum Moderator
BlueVoda Specialist
thx guys sorry for all the trouble but i'm just noob :P
There are currently 1 users browsing this thread. (0 members and 1 guests)