|
Main Menu
User's Login
|
2007 Iditarod sled dog race pictures
Tuesday, March 06, 2007 - 01:53 AM 2007 Alaska Iditarod Sled Dog race
URLology - What is it?
Tuesday, January 24, 2006 - 05:09 PM The ancient art of story telling through URL's. Read on.
My Sudoku Application (basic rules)
Friday, January 20, 2006 - 12:49 PM I am working on a PostNuke Sudoku application. Click on 'Sudoku' under the 'Main Menu' on the left to try it out.
Moose Visits Anchorage Hospital
Tuesday, July 05, 2005 - 12:51 PM Last week a moose paid a visit to Alaska Regional Hospital.
2005 Iditarod sleddog race restart at Willow
Sunday, March 06, 2005 - 09:44 PM Watched the Iditarod restart on Willow lake Sunday (3/6/05). Took a bunch of pictures. Take a look at them here. Enjoy Curt |
Nuggets
1) { // Text include ('header.php'); echo $return; include ('footer.php'); } } else { // Old-old style of loading modules if (empty($op)) { $op = 'modload'; } if (empty($file)) { $file = 'index'; } // get the module info $modinfo = pnModGetInfo(pnModGetIDFromName($name)); switch ($op) { case 'modload': if (pnModAvailable($modinfo['name'])) { define('LOADED_AS_MODULE','1'); // added for the module/system seperation [class007] if (file_exists('modules/' . pnVarPrepForOS($modinfo['directory']) . '/' . pnVarPrepForOS($file) . '.php')) { include 'modules/' . pnVarPrepForOS($modinfo['directory']) . '/' . pnVarPrepForOS($file) . '.php'; } else { // Failed to load the module include ('header.php'); echo "Failed to load module ".$modinfo['name']; include ('footer.php'); } } else { // module is deacitvated include ('header.php'); echo 'Module ' . $modinfo['name'] . ' not available'; include ('footer.php'); } break; default: // Failed to load the module include ('header.php'); echo 'Sorry, you cannot access this file directly...'; include ('footer.php'); break; } } ?> |