wait 10 second after regsitration

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

    wait 10 second after regsitration

    i have searched a lot but didn't find anything as i know javascript don't supported by mobile phones so how to do it like in the same page


    username:
    password:
    wait=10 seconds
    after 10 seconds
    { enter }
    like the enter chat button will show after 10 seconds after the registration.

    if its needed i will explain it again.

    #2
    <meta http-equiv="Refresh" content="10;URL= http://sitename.com" />

    Comment


      #3
      what i dont undastand, is why u wud wana do dat. O.o

      Comment


        #4
        i guess he wants to add tat in lavalair login page...

        yoursite.com/login.php?username=csads&pass=asadd

        Click Here to Login Or Wait For 5 Seconds You'll Be taken to main page in 5 Seconds

        Comment


          #5
          Originally posted by cs.spot123 View Post
          i guess he wants to add tat in lavalair login page...

          yoursite.com/login.php?username=csads&pass=asadd

          Click Here to Login Or Wait For 5 Seconds You'll Be taken to main page in 5 Seconds

          you are right but not like that affter registration click here to login this button will come after waiting 10 seconds like after registration people can not enter before 10 seconds .... again let me explain it....

          registertration page.

          fill all fields

          after click registration.


          your registration done your username and password is:
          username: name
          passworod : passs

          >>>> click here to login or enter
          when people click on click here to login or enter it enter the main page right i want the button will show after 10 seconds like

          first it will only show
          username :
          password :
          after 10 seconds :
          click here to login

          Comment


            #6
            Originally posted by bijaybd View Post
            i have searched a lot but didn't find anything as i know javascript don't supported by mobile phones so how to do it like in the same page


            username:
            password:
            wait=10 seconds
            after 10 seconds
            { enter }
            like the enter chat button will show after 10 seconds after the registration.

            if its needed i will explain it again.
            lol.,why do u need to do that..for what?It's only 10 seconds..If it's something like 1hr yeh i can think there's a sense..Maybe while he is loading the page, the 10 seconds have past already..But let me try it..

            $timereg = mysql_fetch_array(mysql_query("SELECT regdate FROM ibwf_users WHERE name='".$uid."'"));
            $time = time();
            $timeout = timereg[0] + 10;
            if($timeout>$time)
            {
            echo "wait for 10 seconds before entering";
            }else{
            echo "welcome";
            }
            Last edited by kiLLeR-eyEd_14; 28.07.09, 11:20.
            My Blog: http://jhommark.blogspot.com
            My Facebook: http://www.facebook.com/jhommark
            My Official Site: http://www.undergroundweb.tk
            My Community Site: http://undergroundwap.xtreemhost.com

            Comment


              #7
              dnt make sense stil, btw, u'd avta use meta 2 refresh d page anyway. If it was a pc site, i cud give u an ajax code 4 dat, but ajax dnt work on mobile so i suggest u stuff dat idea. Its wack.

              Comment


                #8
                i am getting huge spams and flooding so for that reason i need it as my staff get pvt when a user register so with in 10 second they can check the private message and can ban the nick thats why i need that function ... i know how to do that in javascript but javascript will not going to support in wml i think sorry for my bad english

                Comment


                  #9
                  What?? How can a user spam or flod if he registered 10 seconds ago ... I don't understand what u want 2 do and why ...
                  whatmp3.name - search mp3 on mobile

                  Comment


                    #10
                    let me explain it to you .... when the 10 second waiting after registration the staff will get private message that the user sign up so with in this 1 seconds the staff will able to ban him so... but now users are signing up and entering and flooding spamming and it is taking time to ban them so it is creating problem ..... so i thought after registration if the user have to wait for 10 second to enter ... then the staff will able to ban him after checking the details..... on the other hand i also added user can not register by same browser and ip of the last user registered . but still its not working they are changing browser i dont know why they are so fast and they even doing this all the day long

                    Comment


                      #11
                      Originally posted by bijaybd View Post
                      let me explain it to you .... when the 10 second waiting after registration the staff will get private message that the user sign up so with in this 1 seconds the staff will able to ban him so... but now users are signing up and entering and flooding spamming and it is taking time to ban them so it is creating problem ..... so i thought after registration if the user have to wait for 10 second to enter ... then the staff will able to ban him after checking the details..... on the other hand i also added user can not register by same browser and ip of the last user registered . but still its not working they are changing browser i dont know why they are so fast and they even doing this all the day long
                      try my previous post.,i edited it.,sorry, it's wrong before..
                      My Blog: http://jhommark.blogspot.com
                      My Facebook: http://www.facebook.com/jhommark
                      My Official Site: http://www.undergroundweb.tk
                      My Community Site: http://undergroundwap.xtreemhost.com

                      Comment


                        #12
                        I think u should code something like when a user register he should be auto validated after 20 sec.
                        For 20 second the msg should come that u are not being validated yet.it will stop spamming..i think they change ip by disconneting and connecting again.my ip changes everytime i connect.
                        she is beautifull than php.and i love her more than php.
                        sigpic

                        Comment


                          #13
                          yes thats what i want.....yes and that problem mostly occur because of operamini so is there any way to get the real browser and ip from operamini

                          Comment


                            #14
                            Originally posted by bijaybd View Post
                            yes thats what i want.....yes and that problem mostly occur because of operamini so is there any way to get the real browser and ip from operamini
                            eto getrealip q,

                            try to use this:
                            function getrealip()
                            {
                            if (!empty($_SERVER['HTTP_CLIENT_IP']))
                            {
                            $ip = $_SERVER['HTTP_CLIENT_IP'];
                            }
                            elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
                            { $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
                            }
                            elseif (!empty($_SERVER['REMOTE_ADDR']))
                            {
                            $ip = $_SERVER['REMOTE_ADDR'];
                            }else{
                            $ip = "Unknown";
                            }
                            if(strpos($ip,","))
                            {
                            $exp_ip = explode(",",$ip);
                            $ip = $exp_ip[0];
                            }
                            return $ip;
                            }
                            My Blog: http://jhommark.blogspot.com
                            My Facebook: http://www.facebook.com/jhommark
                            My Official Site: http://www.undergroundweb.tk
                            My Community Site: http://undergroundwap.xtreemhost.com

                            Comment


                              #15
                              So ... You want something like this?
                              PHP Code:
                              // index.php
                              If (isregistered20secago($sid))
                              {
                              echo 
                              "Please wait 10 secs and you will be validated";
                              }else{
                              UPDATE Browser etc ..

                              I don't really understand what is your problem ... If I did, maybe I would be able to help you
                              whatmp3.name - search mp3 on mobile

                              Comment

                              Working...
                              X