ok i have my home page a i have this on the top of it
<?php
require_once('settings2.php');
if (!empty($maintenance) && $maintenance == 2){
echo'<title>'. $mtitle .'</title>';
die(''. $mmessage .'');}
include("login.php");
?>
and i have the varible for $maintenance on the settings2.php page how can i change that number on the $maintenance to 2 via a form?
Settings 2 Page
<?
$maintenance = 0;
$mtitle = 'Maintenance Mode';
$mmessage = 'Okay faithful users...we\'re attempting to restore an older backup of the database...news will be posted once we\'re back!';
?>