Hello. Today I want to randomize 5 numbers and water. Those numbers come together to be a set of numbers in $num and they come. A plugin that I need to random set numbers to random team numbers. PHP: //random set of number = 26483$num = 26483; //value of random/*use $num to run something and $num = 26483*/
what do you want to do? what plugin do you want to create? what code you need? and what is your problem?
1. I want to random the number and get value at random to set to $num 2. I want to create Team Plugin 3. I want Random and set to $num 4. My problems are can't random 5 number and get value at random to set to $num
PHP: to make a random number$num = mt_rand(0,1);0 is the min and 1 is the max it should either make $num 0 or 1
if u want to set multiple numbers into something use an array PHP: $array = [$num,$num1,$num2,$num3,$num4];
Sorry, i cant underestand what do you want to do, you need to get index of what? i think you want to create rand number? if you want to get random 1 - 5 you should use PHP: <?php$num = rand(1, 5);echo $num;//this will get random number 1 - 5 i dont know where do you want to use, so icant help you perfect :(