Help with validation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chad Lupkes

    Help with validation

    Hi everyone,

    I need help with a simple form validation. The form I'm using has
    been the target of some spammers, and I'm wondering what else I can
    do. I have a very simple validation, checking for blanks, and found
    an additional zipcode validation form here:



    I tried combining them, and it doesn't seem to be working. I'm not
    much of a programmer, so I need help. Here's the page:



    Can someone help me at least make the zipcode validation work?

    Thanks!

    Chad Lupkes
    Seattle
  • Martin Honnen

    #2
    Re: Help with validation

    Chad Lupkes wrote:
    I need help with a simple form validation. The form I'm using has
    been the target of some spammers, and I'm wondering what else I can
    do. I have a very simple validation, checking for blanks, and found
    an additional zipcode validation form here:
    >

    >
    I tried combining them, and it doesn't seem to be working. I'm not
    much of a programmer, so I need help. Here's the page:
    >

    >
    Can someone help me at least make the zipcode validation work?
    Focus on server-side validation contact_success .php, that way you can
    keep spammers out. Client-side validation does not help as anyone can
    disable client-side JavaScript or simply directly post to your
    contact_success .php without even using a browser.



    --

    Martin Honnen

    Comment

    • Chad Lupkes

      #3
      Re: Help with validation

      Good point. I'll look into PHP, which is the server-side script that
      I'm most familiar with.

      Thanks!

      Chad

      On Jan 5, 9:41 am, Martin Honnen <mahotr...@yaho o.dewrote:
      Chad Lupkes wrote:
      I need help with a simple form validation. The form I'm using has
      been the target of some spammers, and I'm wondering what else I can
      do. I have a very simple validation, checking for blanks, and found
      an additional zipcode validation form here:
      >>
      I tried combining them, and it doesn't seem to be working. I'm not
      much of a programmer, so I need help. Here's the page:
      >>
      Can someone help me at least make the zipcode validation work?
      >
      Focus on server-side validation contact_success .php, that way you can
      keep spammers out. Client-side validation does not help as anyone can
      disable client-side JavaScript or simply directly post to your
      contact_success .php without even using a browser.
      >
      --
      >
      Martin Honnen
      http://JavaScript.FAQTs.com/

      Comment

      Working...