Validate CPF field

1

I'm having trouble validating cpf field. In my code it is inserting the cpf in the bank always with value number 1 and returning me false, but the cpf is real. How do I fix this?

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>
    
asked by anonymous 04.09.2017 / 01:58

2 answers

3

When you do $cpf = validaCPF($_POST['cpf']); the value of the variable $cpf is the return of the validaCPF($_POST['cpf']); function in the case of valid cpf returns you the value 1 in the variable $cpf and it is this value that will be inserted in the database. data in the cpf column.

The correct one is

$nome = $_POST['nome'];
$cpfTeste = validaCPF($_POST['cpf']);

// Verifica a resposta da função e exibe na tela
if($cpfTeste == true){

    $cpf=$_POST['cpf'];
    $sql = "INSERT INTO valida (nome ,cpf)VALUES ('$nome','$cpf')";
}
    
04.09.2017 / 02:53
4

The variable $cpf is equal to true. With this it is saving 1 in the database.

Try to separate things to take it easy. First receive the data via Post

$nome = $_POST['nome'];
$cpf = $_POST['cpf'];

Then submit the data for validation:

function validarCpf($cpfParaValidar){
  $resultado = str_pad(ereg_replace('[^0-9]', '', $cpfParaValidar), 11, '0', STR_PAD_LEFT);

  return $resultado;
}

$resultado2 = validarCpf($cpf);


if($resultado2){
  //inserir no banco os dados de $cpf
} else {
  //enviar mensagem de erro para tela.
}

And then you save the cpf not the result

    
04.09.2017 / 02:36