Posts by Pedro Henrique • 1 point
1 post
-
-1
votes2
answers49
viewsQ: I’m having problems with my login system
<?php include('conexao.php'); if(empty($_POST['usuario']) || empty($_POST['senha'])) { header('Location: index.html'); exit(); } $usuario = mysqli_real_escape_string($conexao, $_POST['usuario']);…