Computer Operations/Database/General Rules

From MFIWiki
Revision as of 13:30, 16 March 2009 by Landrews (Talk | contribs)

Jump to: navigation, search
29 March 2024
Pd naval.jpg Pd marine.jpg SOC Pd hq.jpg SSD KTF Romulan_Legion
Trek Bar

Computer Operations Seal, designed by Samuel Cummings

MFI Computer Operations

MFI Database General Programming Rules


All DB pages need to start with the following code:

//Initial setup

session_start();
//Address error handling
ini_set ('display_errors', 1);
error_reporting (E_ALL & ~E_NOTICE);
// Include required files
include_once("include/db.inc.php");
include_once("include/error_handler.php");
// Start up our wonderful db connection
$conn = db_connect();

//Check user is logged into the DB system

if (! (isset($_SESSION['id']))) {
header("Location: dblogin.php");
exit;
}


The following code is used to start the HTML section of the page:

// Create HTML

//Set header variables
$pic = picture("member",$view);
$nav = navigationbuttons2("member",$view);
if (isccmember()) {
$title = "Reset Password for".rankandname($view);
}else{
$title = "Changing My Password";
}
//Create Header and Footer
$header = htmlheader($title,$nav,$updated,$pic);
$footer = htmlfooter($nav);

Personal tools