Try: ca/tecreations/ViewFile.php
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . "/Base.php";
require_once $_SERVER['DOCUMENT_ROOT'] . $PREFIX_DIR . "/start.php";
GLOBAL $tec_purple;
$tec_purple = array(75,0,130);
function rgb2Hex($r = 0, $g = 0, $b = 0) {
$hex = sprintf("#%02x%02x%02x", $r,$g,$b);
return $hex;
}
// print(rgb2Hex(220,220,220));
// print("<br />");
// print(rgb2Hex(51,51,51));
// print("<br />");
?>
<style>
div.padded {
padding-top: 25px;
padding-right: 25px;
padding-bottom: 35px;
padding-left: 25px;
}
</style>
</head>
<body>
<?php
include_once $DOCROOT . "$PREFIX_DIR/header_start.php";
include_once $DOCROOT . "$PREFIX_DIR/menu/userMenu.php";
include_once $DOCROOT . "$PREFIX_DIR/menu/contact.php";
include_once $DOCROOT . "$PREFIX_DIR/header_finish.php";
?>
<div class="jumbotron padded">
</div>
<?php require_once "$DOCROOT$PREFIX_DIR/footer.html"; ?>