Hello all,
I have a problem and starting to loose my hair over that..
$a=randomgenerator();
$b=randomgenerator();
do
{
$a=randomgenerator();
$b=randomgenerator();
} while($a==$b)
The goal is that $a and $b from the random number generator are never the same.
Any other way to do that ?
Thanks
Peter