Hi everyone!
My problem is that i generate random number between 0 and 1 for home team and away team. I want this to generate until home and away are not equal. So here's the code i made but it goes forever.. it never stop! I'm missing something but i dont know what?
<?php
$home=rand(0, 1);
$away=rand(0, 1);
do
{
echo "HOME : " . $home . " || AWAY : " . $away . "<br />";
}
while ($home == $away);
?>
Thanks!
[edited by: skoff at 2:27 pm (utc) on Apr 19, 2011]