-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';
}
We need to see the code to help.
– Lucas Thibau Paulino