Baseball Freak
New member
So I have my PHP script that does this:
$a = trim(fgets(STDIN));
if ($a > 1 && $a < 5){
// Does my stuff here
}
How can I make this so that it will get, say 1 - infinity?
$a = trim(fgets(STDIN));
if ($a > 1 && $a < 5){
// Does my stuff here
}
How can I make this so that it will get, say 1 - infinity?