My registration.php page sends a user to my login.php page with:
if(mysqli_stmt_execute($stmt)){
// Redirect to login
header("location: login.php");
} else{
echo "<span style='color: red; margin-left: 5px;'>Something went wrong. Please try again later</span>";
}
I'd like to figure out how to carry the username & email that they chose on the register.php page over into the input fields on the login.php page