Likes Received By Riverofrhyme
-
boa8888 liked Riverofrhyme's post in the thread Cleaning Up SQL Injection Attack : b.js & preventing SQL Injection.
Try using this: function secure($string) { $string = strip_tags($string); $string = htmlspecialchars($string); $string =...
Jul 28, 2009 -
exodus liked Riverofrhyme's post in the thread PHP form numbers validation.
is_int That's what you're looking for. To do a range check just do something like: if($number > 12 && $number < 16){ } else { }
Mar 7, 2009