Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
PHP Sessions
When using a PHP session I'm getting the warning:
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/www//profile.php:18) in /home/www//profile.php on line 25
and When I'm setting the session I'm using:
$_SESSION["name"] = $_POST["uname"];
$_SESSION["user_id"] = $res["id"];
$_SESSION["active"] = 1;```
Anyone know what I need to change/add?