1st, in the file login_inc.php ensure that you have changed the 4 paths so that "www.yoursite.com" refers to your domain.
Then on the page you want to include the login use this code:
Code:
<?php
chdir('/home/racett56/public_html/forums');
require_once('/home/racett56/public_html/forums/global.php');
require_once('/home/racett56/public_html/login_inc.php');
?>
Note:
This assumes on the 4th line that you have placed the file login_inc.php in your websites root directory (that is where you would have index.html or index.php)
Hope this helps.