Mysql – After logging-in, the page refreshes and stays on login.php instead of the profile.php which it should have, what could be the error?
this is my login.php
<?php
session_start();
require_once('db_connection.php');
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$username = $_POST['username'];<br