my contact page doesn't pop up, please help
need help on "Form"
Collapse
X
-
Re: need help on "Form"
Well Don.. how about a link or some more info. How about an explanation of what you did to get the 404 not found and where and why the page is or isnt. How about a link to your site, so that, even if we dont have a clue what you are yelping about we can ALMOST figure it out.
Sorry, I just havent got this telekinesis stuff down yet.
Karen
VodaHost
Your Website People!
1-302-283-3777 North America / International
02036089024 / United Kingdom
291916438 / Australia
------------------------
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)
Comment
-
-
Re: need help on "Form"
I'm sorry, here is my site http://www.horoscopescenter.net/
i'm going to work now, be back tonight and work on the stie, thanks all.
Comment
-
-
Re: need help on "Form"
Don,
If I may, your url looks good. I think you need to take close look
at your navigation bar, your "contact" should read:
It must match as shown above.
good luck
Dan.
Comment
-
-
Re: need help on "Form"
Don-
Your form is here;
But you have the link as this;
Change it. Then test the form. Also- in your next post, please cut and paste the php script you are using to process the form.
AndyPHP- is a blast!
Comment
-
-
Re: need help on "Form"
Don,
Andy is right...make your contact form exts match. It has to be either
PHP or HTML, these have to match. Also below is the PHP script that Andy is talking about:
Here's the entire PHP code..modify the blue to fit your needs:
---------------------------------------------------------------
<?PHP
$mailto = "email@yoursite.com";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto;
}
$mailsubj = "Reservation request";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from our Reservation Form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
if ($key!="submit")
{
$mailbody .= "$key : $val\n";
}
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>
Comment
-
Comment