This may be a simple question but i'm trying to do a loop while one value doesn't equal the other but for some reason the loop never runs even if the values = each other. Can anyone help me out? :confused:
PHP Code:while ($Number1 != $Number2) {
$Number2 = intval(rand(100, 999));
$Number1 = $Number2;
}
