
1. How does this benefit me by coming to this site?
2. How do I play?
3. How do I know I will not be spammed?
4. How do I know if I won?
5. What are the odds?
6. Does it cost anything?
7. What if I rarely check my emails? How would I know I won then?
8. How do you draw the winner?
1. How does this benefit me by coming to this site?
The site benefits all visitors because of our free raffling system. Every time you click an ad you are automatically entered. Why wouldn’t anyone enter into our raffling for free? On top of that, if you were in need of a certain product, you can come here, enter into our raffle drawing and then buy your product. It is a win, win situation for you and any other visitor.
2. How do I play?
It is very simple actually. Click on an ad that interests you and enter your email. After filling in the image verification and email address, all you have to do is wait for the 10 seconds and click the button that is given. Once clicked, that is when you are entered into the raffle drawing (you should get a verification message on screen).
*Be sure to use a valid email address, as to claim your prize you MUST respond to us via that email address.
3. How do I know I will not be spammed?
The email used to enter the raffle is not used for ANY other purpose. It is only for us to email you if you win. There is a separate newsletter you can join if you wish to receive updates from raffleclicks.
4. How do I know if I won?
An email will be sent out to you to notify that you have won. Further instructions will be in the email you received. We will also post the winning email address (with some letters blocked out) on the webpage. After we get more information we wish to use the winners first name, last initial, and location if it is ok with them. This way we can keep up a wall of winners (picture would be nice too). We also would like to receive testimonials from our winners to post in the testimonial section
5. What are the odds?
The odds really depend on how many visitors and entries we get. Remember you can increase your odds by clicking on an AD multiple times (once a day though). We will also be increasing the values of the prizes, as well as making the drawing times shorter as we get more advertising revenue.
6. Does it cost anything?
Nope! It costs nothing on your part other than a little time. It is totally free with no gimmicks or disclaimers.
7. What if I rarely check my emails? How would I know I won then?
All winners will have 48 hours to claim their prize. If they do not respond within the 48 hours then we will do another raffle drawing with the same group that entered for that prize. We will also post up the winning email(with some letters blocked out) on raffleclicks.com, so if you do not check your email, you can also check our site. The drawing date is posted in the Prize(s) section.
8. How do you draw the winner?
To start, we will randomly draw an advertiser from an array. From there, I made a script that will take all rows from the table for that advetiser in the database. Each row contains the number of entries that person had during the drawing period. I take the number of entries the person had, and their email goes into an array that many times. After all the emails are listed in the array, I use a random number generator to draw a random array element. The email corresponding to that array element is the winner. For example, if abc@gmail.com had 3 entries and efg@yahoo.com had 2 entries (in that order), the array would be something like this:
0 - abc@gmail.com
1 - abc@gmail.com
2 - abc@gmail.com
3 - efg@yahoo.com
4 - efg@yahoo.com
So, the more you click and enter, the more presence you will have in the array.