| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/usafundingapplications.ai/membersonly/ |
Upload File : |
<?php
if(strstr($_SERVER['REMOTE_ADDR'],'74.211.31') !== false) {
die('Unauthorized IP'); //74.211.31.213 dustin's office ip
}
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/globals.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/AuthLCAPI.php');
//Member Authentication Object
$auth = new AuthLCAPI();
if(!$auth->isLoggedIn()) {
ob_clean();
header('location: '.$auth->loginPageUrl);
exit();
}
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/globals.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/assets/inc/functions.includes.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php include 'header_daniel.php'; ?>
</head>
<body id="body" class="<?=$body_class;?>">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-6317376-5', 'auto');
ga('send', 'pageview');
</script>
<div class="container" onclick="window.location='/'">
<div class='logo-wrap'>
<img class="logo-img" src='https://usagrantapplications.org/membersonly/imagesv2/logo2.jpg'>
</div>
</div>
<div class="content">
<div class="container" style="background:white; border-radius: 22px;">
<div class='row'>
<div class='col-md-3'>
<?php include 'nav_daniel.php'; ?>
</div>
<div class='col-md-9'>
<?php if(empty($dont_show_get_some_grants)) { ?>
<div class="hidden-xs" id="site_feedback" style="clear:right; margin: 0 0 20px 15px; float: right;" >
<?php
if(!empty($_SESSION['user_subscriptions']['id_2'])) {
echo file_get_contents("http://thegrantresearchdatabase.com/get_some_grants.php?pass=LemmeIN&site=usaga&client_id=".$_SESSION['user_subscriptions']['id_2']['user_id']);
} else {
echo file_get_contents("http://thegrantresearchdatabase.com/get_some_grants.php?upsell=1&pass=LemmeIN&site=usaga&client_id=".$_SESSION['user_subscriptions']['id_1']['user_id']);
}
?>
</div>
<?php } ?>
<?php echo $pageHtml; ?>
</div>
</div>
<div class='row'>
<div class="base">
<div class="base_">
<a href="/v4/">Home</a> | <a href="terms.php">Terms</a> | <a href="glossary.php">Glossary</a> | <a href="contact.php">Contact</a> | <a href="/v2/login.php?logout=1">Logout</a> <div class="copy">© USA Grant Applications Copyright <?php echo date('Y');?></div>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer_daniel.php'; ?>
</body>
</html>