Error closing php tag

Asked

Viewed 113 times

-5

My code is giving the error

Parse error: syntax error, Unexpected end of file in C: xampp htdo...

When I see where the error is, it is at the closing of the tag <?php.

What could be going on?

<?php 
    require_once('db.class.php'); 
    $usuarios = $_POST['usuario']; 
    $email = $_POST['email']; 
    $senha = md5($_POST['senha']); 
    $objDB= new db(); 
    $link= $objDB->conecta_mysql(); 
    $usuario_exite=false; 
    $email_exite=false; //verificar se o usuario existe 
    $sql= "select * from usuarios where usuario = '$usuarios'";

    if($resultado_id = mysqli_query($link, $sql)) {
        $dados_usuario = mysqli_fetch_array($resultado_id); 
        if(isset($dados_usuario['usuario'])){
            echo 'usuario ja exitente';
        } else {
            echo 'erro ao tentar localizar o usuario';
        }   

1 answer

4

You forgot to lock the key to the if:

<?php 
require_once('db.class.php'); 
$usuarios = $_POST['usuario']; 
$email = $_POST['email']; 
$senha = md5($_POST['senha']); 
$objDB= new db(); 
$link= $objDB->conecta_mysql(); 

$usuario_exite=false; 
$email_exite=false; //verificar se o usuario existe 
$sql= "select * from usuarios where usuario = '$usuarios'"; 

if($resultado_id = mysqli_query($link, $sql)) { 
  $dados_usuario = mysqli_fetch_array($resultado_id); 
  if(isset($dados_usuario['usuario'])){ echo 'usuario ja exitente'; } 
  else { echo 'erro ao tentar localizar o usuario'; } 
}
  • thank you so much!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.