How can i determine if a string contains numbers?
Thanks
Try using the ereg() function. http://www.php.net/manual/en/function.ereg.php
Or the full can of beans....
if(eregi("[[:digit:]]", $string)){ print "I found a Number in $string!"; }else{ print "No numbers here!"; }