in8notes

This portion of my site is powered by Blosxom. Blosxom is a perl script whose functionality here is extended through several plugin scripts in order to dynamically assemble a multitude of separate plain text files stored in a directory tree on the server into a cohesive, dated and RSS enabled weblog. Now in daily (r)sync with the directories on Nate's Powerbook.


home / geeklog



blosxom
categorytree plugin
blox plugin
find plugin
breadcrumbs plugin



       
Return to in8sworld.net


Dropdown URL Go-To
I added this drop down form to the geeklog blog recently which is just a simple form with some javascript in the header.

Last saved: 02/28/2005
Links: /geeklog / geeklog-dropdown-block.txt

Register Globals OFF?


// Emulate register_globals on
if (!ini_get('register_globals')) {
   $superglobals = array($_SERVER, $_ENV,
       $_FILES, $_COOKIE, $_POST, $_GET);
   if (isset($_SESSION)) {
       array_unshift($superglobals, $_SESSION);
   }
   foreach ($superglobals as $superglobal) {
       extract($superglobal, EXTR_SKIP);
   }
   ini_set('register_globals', true);
}

Last saved: 02/05/2005
Links: /geeklog / register-globals.txt