find.php3 displays only 10 users
Brought to you by:
ntua
here small diff that fixes problem:
# diff -r find.php3 find.php3.orig
12c12
< if (!is_numeric($max_results))
---
> if (!is_int($max_results))
To test if a variable is a number or a numeric string
(such as form input, which is always a
string), you must use is_numeric(). (c)
http://ru3.php.net/is_int