I am making a regular expression that validates the Venezuelan identity card and I achieve it
if(preg_match_all("/(\d*[0-9]{2})/", $cedula, $resultado)){
print_r($resultado);
} else {
echo "No hubo resultado";
}
The problem is tha...
asked on
20.05.2018 / 21:07