No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: If you haven't resolved this problem on your own yet: Sounds like you have not properly attached the validation to the click event or are replacing it with another click event (maybe your field copy function?). There are really too many possible issues to speculate further... Seeing the code would … | |
I while back I added a little countdown timer for an action on our website which also plays a ticking and "ding" sound. I didn't have too much trouble getting it to work across all browsers...or at least I thought. I received a complaint from a visitor that they were … | |
Re: Try this: Change this: [CODE] while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; }[/CODE] to this [CODE] while (list ($key, $val) = each ($HTTP_POST_VARS)) { If($val != '') { $mailbody .= "$key : $val\n"; } }[/CODE] That if($val != '') is checking to see that … |
The End.