FATAL ERROR: cannot connect to mySQL server
host: '.$server.'
user: '.$db_user.' ');
if (!@mysqli_select_db($db_link, $database))
die('
FATAL ERROR: I cant make up my mind!! Cannot select MySQL database "'.$database.'"');
$params = explode("/", $_SERVER["REQUEST_URI"]);
$section = $params[3];
$galleryid = $params[4];
$itemid = $params[5];
// SHOW GALLERY PAGE
if ($section=="gallery") {
include("layout_mainnav.inc");
echo "
\n";
include("scrapbook_gallery.inc");
echo "
\n";
} elseif ($section=="item") {
// SHOW INDIVIDUAL PICTURE
echo "
\n";
include("scrapbook_item.inc");
echo "
\n";
} else {
// OTHERWISE SHOW SCRAPBOOK INDEX
include("layout_mainnav.inc");
echo "
\n";
include("scrapbook_show.inc");
echo "
\n";
}
?>