Anti flood control in registration

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Anti flood control in registration

    anybody have this code plz give me

    #2
    index the username mate that is your anti flood control

    in mysql

    if you do not understand delete your site then ask for a real job at your home !!
    Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
    Visit: WapMasterz Coming Back Soon!
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

    Comment


      #3
      i think u will make a very smart.. but dear there 90% user is normal coder only copy paster

      Comment


        #4
        if you index username in MySql they can't not flood you with same username.
        Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
        Visit: WapMasterz Coming Back Soon!
        _______
        SCRIPTS FOR SALE BY SUBZERO
        Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
        FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
        _______
        Info & Tips
        php.net
        w3schools.com

        Comment


          #5
          y dont u use capcha to controlin flood?
          N use session to restrict user from entering in registration page.
          Code ur own

          Comment


            #6
            captcha code is not workin in some browsers means nokia 3110c defult browsers i will put a flood control in my reg php like pm flood type datz easy to a normal wap users

            Added after 4 minutes:

            i was use math captcha bt datz also not control to reg flood
            Last edited by wapcult; 04.03.11, 08:31.

            Comment


              #7
              :-? Destroy the captcha session after submit.
              Unamos los corazones,hoy todos somos multicolores!

              Comment


                #8
                Yes i have it, Its for sale, $100 intrested in buying ?? huh lool
                Heres it :P
                PHP Code:
                //goes in registration..
                <?php
                if (!isset($_SESSION)) {
                session_start();
                }
                // anti flood protection
                if($_SESSION['last_session_request'] > time() - 2){
                // users will be redirected to this page if it makes requests faster than 2 seconds edit it to wateva u lyk lool
                header("location: /flood.html");
                exit;
                }
                $_SESSION['last_session_request'] = time();
                ?>
                flood.html
                PHP Code:
                <html>Don't try to flood my database, i have less space ::P coded by <b>TK</b> aka <b>ShaaN</b></html> 
                click thanks, if you find it it usefull. also if you need any help pm me first before you create a new thread if you wish to

                Comment

                Working...
                X