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 <?php
tag.
What could be happening?
<?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';
}