1
I’m having trouble validating the Cpf field. In my code he is inserting Cpf in the bank always with value number 1 and returning me false, but Cpf is real. How to fix it?
code:
<?php
/*
@autor: Moacir Selínger Fernandes
@email: [email protected]
Qualquer dúvida é só mandar um email
*/
// Função que valida o CPF
function validaCPF($cpf)
{ // Verifiva se o número digitado contém todos os digitos
$cpf = str_pad(ereg_replace('[^0-9]', '', $cpf), 11, '0', STR_PAD_LEFT);
// Verifica se nenhuma das sequências abaixo foi digitada, caso seja, retorna falso
if (strlen($cpf) != 11 || $cpf == '00000000000' || $cpf == '11111111111' || $cpf == '22222222222' || $cpf == '33333333333' || $cpf == '44444444444' || $cpf == '55555555555' || $cpf == '66666666666' || $cpf == '77777777777' || $cpf == '88888888888' || $cpf == '99999999999')
{
return false;
}
else
{ // Calcula os números para verificar se o CPF é verdadeiro
for ($t = 9; $t < 11; $t++) {
for ($d = 0, $c = 0; $c < $t; $c++) {
$d += $cpf{$c} * (($t + 1) - $c);
}
$d = ((10 * $d) % 11) % 10;
if ($cpf{$c} != $d) {
return false;
}
}
return true;
}
}
// include do arquivo de conexão
// Adiciona o numero enviado na variavel $cpf_enviado, poderia ser outro nome, e executa a função acima
include 'conecta.php';
$nome = $_POST['nome'];
$cpf = validaCPF($_POST['cpf']);
// Verifica a resposta da função e exibe na tela
if($cpf == true){
$sql = "INSERT INTO valida (nome ,cpf)VALUES ('$nome','$cpf')";
}
elseif($cpf == false){
echo "CPF FALSO";}
$qry = mysql_query($sql); // execultando a query
if($qry){
echo "<div class='alert alert-success' role='alert'>registro inserido com
sucesso<meta http-equiv=refresh content='1;URL=?tag=enviarcpf.php'>";
}
mysql_close();
?>
<form action="action.php" method="post">
cpf:<input type="" value"" name="cpf">
nome:<input type="" value"" name="nome">
<input type="submit" value="enviar">
</form>
Just a hint/hint: Beware when exposing personal data along with the codes. In this example we see a name and an email in the code. It would be better to hide this information, or switch to *******
– Rodrigo Tognin