html and php help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • journalism
    Confirmed User
    • Mar 2011
    • 395

    #1

    html and php help

    I have some online form and right now I have seen some small problem.

    1. Some of the data are being duplicate the same data.
    Q. What is the html or php or script to use so that it can be automatically check if the data is already use (i.e. username or email)?

    2. Some of the form are blank no data has been entered.
    Q. What is the html or php or script to use so that the single form or a text field can be required to fill in some data on it?


    Thanks in advance.
  • journalism
    Confirmed User
    • Mar 2011
    • 395

    #2
    Bump for some info.

    Comment

    • raymor
      Confirmed User
      • Oct 2002
      • 3745

      #3
      1) in use where?

      2)
      if empty ($_REQUEST['somevar']) {
      print an error and exit
      }

      What sucks about web development is that every month about 50 hackers will check to see if you made any common mistakes. Unlike desktop or microcontroller development, "small" errors end up with your server overrun with trojans. Since you're clearly a complete newbie, just starting to learn the very basics, these three rules will help your server survive while you learn:

      Don't call any system commands, like ffmpeg for example. You don't know how to do so safely. (You're about 2-3 years from knowing how if you're careful and you study, as the "techies" here normally post perfectly exploitable code.)

      Sendmail is a system command. Use PHP's mail() function and hardcode either the recipient or the message. Otherwise you'll be a nice gateway for spammers.

      If you use a "database" (which will actually be a spreadsheet to you, since you don't know what "relational database" means), assume the bad guys have access to it. They can read or delete your table at this point in your development.

      I say these things without looking down on you at all. I was at the same place in my learning twenty-five years ago. Now, I'd be grateful to get similar tips from T'so on how to work on a device driver without blowing up my kernel. I'm about to work on an LVM device mapper patch and I'll be seeking advice from agk and Zdenek Kabelac.
      Last edited by raymor; 12-07-2011, 07:18 PM.
      For historical display only. This information is not current:
      support@bettercgi.com ICQ 7208627
      Strongbox - The next generation in site security
      Throttlebox - The next generation in bandwidth control
      Clonebox - Backup and disaster recovery on steroids

      Comment

      • 19teenporn
        Confirmed User
        • Apr 2011
        • 3034

        #4
        Too long to explain.

        In this case google is your very good friend...

        Comment

        • raymor
          Confirmed User
          • Oct 2002
          • 3745

          #5
          Originally posted by 19teenporn
          Too long to explain.

          In this case google is your very good friend...

          Lol in this case O'Reilly is your friend.
          For historical display only. This information is not current:
          support@bettercgi.com ICQ 7208627
          Strongbox - The next generation in site security
          Throttlebox - The next generation in bandwidth control
          Clonebox - Backup and disaster recovery on steroids

          Comment

          • Alky
            Confirmed User
            • Apr 2002
            • 5651

            #6
            Originally posted by raymor
            1) in use where?

            2)
            if empty ($_REQUEST['somevar']) {
            print an error and exit
            }
            Using $_REQUEST is such a bad idea unless you really know what you're doing.

            Comment

            • marlboroack
              So Fucking Banned
              • Jul 2010
              • 9327

              #7

              Comment

              Working...