Note that you don't necessarily have to define it as static, but if you don't, then you'll need to instantiate an object, first.
$validate = new validate();
if($validate->validateURL($URL) == false) {
echo "Please enter a valid URL";
}
However, if the intent is for the Validate class to simply provide stand-alone validation functions, then the static approach is probably a good idea.