Lynne I love all of your stuff, but even though I am proficient at coding, I am at a loss as to actually follow this tutorial.
I wish to display on the actual custom page, currently active users.
My page is: a homegrown creation, called vbquote
template named vbquote, php file is vbquote.php
code for this is:
Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'vbquote');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// pre-cache templates used by all actions
$globaltemplates = array('vbquote');
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// ######################## START MAIN SCRIPT ############################
$navbits = array();
$navbits[$parent] = 'vB Quotations';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbquote') . '");');
?>
Could you please tell me what to do where, PLEASEY WEASY