-1
I am trying to generate errors in the file logerro.txt
, but I don’t know how to do it. I used the syntax error function:
try{
}else(PDOException $e){
echo'Sistema indisponível';
LogErros($e);
I used the above function and gave error:
<?php
require_once( '../../sllapsocial/classes/DB.class.php' );
if( @$_SERVER['REQUEST_METHOD'] == 'POST' ) {
$nome = $_POST['nome'];
$sobrenome = $_POST['sobrenome'];
$email = $_POST['email'];
$senha = $_POST['senha'];
$sexo = $_POST['sexo'];
$ano = $_POST['ano'];
$mes = $_POST['mes'];
$dia = $_POST['dia'];
$captcha = $_POST['captcha'];
$erro = '';
if( $nome == '' ) {
$erro .= 'Qual é o seu nome?<br>';
} elseif ( strlen( $nome ) < 2 ) {
$erro .= 'Insira um nome existente<br>';
}
if( $sobrenome == '' ) {
$erro .= 'Qual é o seu sobrenome<br>';
} elseif( strlen( $sobrenome ) < 2 ) {
$erro .='Insira um sobrenome existente<br>';
}
if( $email == '' ) {
$erro .= 'Insira seu email';
} elseif( !filter_var($email, FILTER_VALIDATE_EMAIL) ) {
$erro .= 'E-mail invalido tente outro<br>';
}
if( $senha == '' OR strlen( $senha ) < 4 ) {
$erro .= 'Você precisa ter uma senha<br>';
}
$verificar = DB::getConn()->prepare( 'SELECT `id` FROM `usuarios` WHERE `email`=?' );
if( $verificar->execute( array( $email ) ) ) {
if( $verificar->rowCount() > 0 ){
$erro .= 'Este e-mail ja existe<br>';
// } else {
// Se quiser, tire os comments deste código para testar se chegou aqui
// $erro .= 'Email livre. Pode remover esse else do código<br>';
}
} else {
$erro .= 'Erro interno ao verificar o e-mail<br>';
}
if( strtolower( $captcha ) <> strtolower( $_SESSION["captchaCadastro"] ) ) {
$erro .= 'Codigo errado<br>';
}
if( $erro === '' ) {
$senha = sha1($senha);
$nascimento = "$ano-$mes-$dia";
$inserir = DB::getConn()->prepare( 'INSERT INTO `usuarios` SET `email`=?, `senha`=?, `nome`=?, `sobrenome`=?, `sexo`=?, `nascimento`=?, `cadastro`=NOW()' );
if( $inserir->execute( array( $email, $senha, $nome, $sobrenome, $sexo, $nascimento ) ) ) {
{
header('Location: /');
}
}
}
die( $erro );
}
?>
Related: Capture errors and PHP Exceptions
– rray