Question

I am making a maintenance page and you can set maintenance to true in PHP like this:

$maintenance = false;

And I want a function to include on every page, like this

include 'example.php';
maintenance_mode();

And the function should re-direct the user to the maintenance page.

Was it helpful?

Solution

   function isMaintenance($maintenance)
   {
     if(isset($maintenance) && $maintenance){
        header("location:maintenace_page.php");
        exit();
     }          
   }

In config.php add $maintenance variable,

  $maintenance =true;

and include isMaintenance($maintenance) function page and config page in respective page or if you already included any common file all the pages then use that file and add mentioned stuff into that page.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top