![]() | |
#11
| ||||
| ||||
|
|
Ed Mullen wrote: Take a look at the site in my sig address. I just changed it to have both a fixed top header and fixed footer. Tested in all major browsers I know of and it seems to work just fine. I think the fixed areas need borders. Make it apparent those areas won't move. |
|
Not that I like fixed headers/footers; all they do is take up valuable space in your visitors' viewport. |
|
The hover effect on all your links -- ordinary link changes to a green button -- also makes the surrounding text jump about. That's disconcerting. The Back button on a failed 'contact form' is JavaScript dependent. Why not use a simple link that works all the time? |
|
Obviously, in your comments, please state your OS, version, browser and version, and any functional issues. Ubuntu 8.04. Several browsers. And feel free to yell about drop-down menus and such as will please your heart. I have rather thick skin. Ok. :-) Drop-down menus suck! |
#12
| |||
| |||
|
|
The Back button on a failed 'contact form' is JavaScript dependent. Why not use a simple link that works all the time? Yes, I know. However, if I offer a link to contact.php none of the user's data will be retained. I suppose I could take the actual button off and just say "Use your browser's Back button to return to the form and make corrections." <pondering> Hmm. Hmm.</pondering> Oh, ok! |
#13
| |||
| |||
|
|
Ed Mullen wrote: Take a look at the site in my sig address. I just changed it to have both a fixed top header and fixed footer. Tested in all major browsers I know of and it seems to work just fine. The hover effect on all your links -- ordinary link changes to a green button -- also makes the surrounding text jump about. That's disconcerting. |
#14
| |||
| |||
|
|
Gazing into my crystal ball I observed Ed Mullen<ed (AT) edmullen (DOT) net> writing in news:37jrdp.u5.17.1 (AT) news (DOT) alt.net: The Back button on a failed 'contact form' is JavaScript dependent. Why not use a simple link that works all the time? Yes, I know. However, if I offer a link to contact.php none of the user's data will be retained. I suppose I could take the actual button off and just say "Use your browser's Back button to return to the form and make corrections."<pondering> Hmm. Hmm.</pondering> Oh, ok! If you let the form post to itself, you won't have that problem. |
#15
| |||
| |||
|
|
Ed Mullen <ed (AT) edmullen (DOT) net> wrote: [Beau wrote:] The Back button on a failed 'contact form' is JavaScript dependent. Why not use a simple link that works all the time? Yes, I know. However, if I offer a link to contact.php none of the user's data will be retained. I suppose I could take the actual button off and just say "Use your browser's Back button to return to the form and make corrections." <pondering> Hmm. Hmm.</pondering Oh, ok! If you let the form post to itself, you won't have that problem. |
#16
| |||
| |||
|
|
Adrienne Boswell wrote: If you let the form post to itself, you won't have that problem. The form is posting to a PHP script for processing that includes not just error detection but spam processing as well. So I think that's not an answer for me. Or am I misunderstanding your suggestion? |
",$body);
#17
| |||
| |||
|
|
Ed Mullen wrote: Adrienne Boswell wrote: If you let the form post to itself, you won't have that problem. The form is posting to a PHP script for processing that includes not just error detection but spam processing as well. So I think that's not an answer for me. Or am I misunderstanding your suggestion? You can see a simple example of self-processing here: http://safalra.com/programming/php/contact-feedback-form/ |
|
It already checks for typical spammer input (cc/bcc), but you could certainly expand it to use your IP-blocking mechanisms. |
#18
| |||
| |||
|
|
Beauregard T. Shagnasty wrote: You can see a simple example of self-processing here: http://safalra.com/programming/php/contact-feedback-form/ The only problem I see with that script/example is that it contains the actual email address to which the form is to be sent. Simply by reading the source of the contact.php form page a spammer can harvest my email address. That's why I post to a different page (which can't be accessed) for processing. |
|
It already checks for typical spammer input (cc/bcc), but you could certainly expand it to use your IP-blocking mechanisms. Hmm. I don't filter IP addresses. Ah! You may have looked at the source of my contact.php page and seen a comment regarding filtering. I forgot to strip that out (done now, thanks!) after I was done playing with ip filtering a long time ago and decided it wasn't worth it for the very reasons you cited. :-) |
#19
| |||||
| |||||
|
|
Ed Mullen wrote: Beauregard T. Shagnasty wrote: You can see a simple example of self-processing here: http://safalra.com/programming/php/contact-feedback-form/ The only problem I see with that script/example is that it contains the actual email address to which the form is to be sent. Simply by reading the source of the contact.php form page a spammer can harvest my email address. That's why I post to a different page (which can't be accessed) for processing. The email is in the PHP portion of the script, not the HTML part. It can't be read by anybody except those with FTP access to your files. |
|
All my forms have the TO address set like this example. Try safalra's script yourself on a test page and you will see the address is not visible when reading browser source. |
|
But if that still bothers you, set your email address in a global include file (don't we all have those?), and just use the $variable in the contact script. |
|
It already checks for typical spammer input (cc/bcc), but you could certainly expand it to use your IP-blocking mechanisms. Hmm. I don't filter IP addresses. Ah! You may have looked at the source of my contact.php page and seen a comment regarding filtering. I forgot to strip that out (done now, thanks!) after I was done playing with ip filtering a long time ago and decided it wasn't worth it for the very reasons you cited. :-) Yes, you are correct; that's what I saw. Oh, while we're talking about the 'source' of your contact page, here's a question: why all those type="hidden" thingies in there? None of those should be necessary if you posted the form to self. |
|
I don't use CAPTCHAs either. I hate those suckers! |
#20
| |||
| |||
|
|
Beauregard T. Shagnasty wrote: I don't use CAPTCHAs either. I hate those suckers! Me too. But it has reduced spam somewhat. |
![]() |
| Thread Tools | |
| Display Modes | |
| |