Jump to content

403


The Little Guy

Recommended Posts

I want to display a 403 error page, but it isn't working. I don't wanna make a 403 page, I just want to use the current one. This doesn't display anything:

 

<?php
include '../../db.php';
if($_SESSION['logged']){
// Will do something soon
}else{
header("HTTP/1.1 403 Forbidden");
}
?>

<?php
include '../../db.php';
if($_SESSION['logged']){
    // Will do something soon
}else{
    die("HTTP/1.1 403 Forbidden");
}
?>

Link to comment
https://forums.phpfreaks.com/topic/142852-403/#findComment-748850
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.