On Wed, 09 Jul 2003 07:00:38 -0500, you wrote:

>I've got a problem.  I have a form that the user fills out and then
>hits submit on and it sends an e-mail.  My problem is that I have one
>AOL user that claims that when ever he goes back to the form, it
>doesn't present the form - it just sends the message.  It appears that
>for some reason $HTTP_POST_VARS["EMAIL"] has a default value or it's a
>cache issue.  Any ideas????
>
>Here is the psudo-code...  
>
>if( ! isset( $HTTP_POST_VARS["EMail"] ) ) { 

The obvious thing to do is change all instances of "EMail" to "emailaddress"
or somesuch, and see if the problem still exists. Do you know anyone on AOL
who isn't having the problem?

Your guesses as to cause seem reasonable to me, but without an example of
their browser to test against, you're working blind.

>  <form method="POST" onsubmit="return validate(this)" name="MailForm">

Hmm... or maybe AOL is doing something wacky with onsubmit()?


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to