<?php$cwd = getcwd(); // Save our current directory to switch to afterchdir('path/to/forum');require_once('global.php')// more require_once()chdir($cwd) // Switch back to original directory// Continue script...