Jump to content

How can Raise my Percentage?


Monkuar

Recommended Posts

I have a scratch ticket system I made, and this code generates if a user will win or not.

 

$card1 = rand(1,5);
$card2 = rand(1,5);
if($card1 == "1" && $card2 == "1"){
//I WON!!! do my queries here/etc
}else{
//Failed
}

 

 

Okay, now how can I make it so I can set it up so I can change it to 5% of winning, 10% of winning, 15% of winning, 20% of winning/etc so on?  instead of just a random count function?

 

Link to comment
https://forums.phpfreaks.com/topic/256353-how-can-raise-my-percentage/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.