LCARS is a template for the GetSimple CMS that mimics the monitor appearance in the television series Star Trek: The Next Generation
		
			
				
	
	
		
			22 lines
		
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Upload Folder Checker Ajax
 | 
						|
 *
 | 
						|
 * Return true if the file exists
 | 
						|
 *
 | 
						|
 * @author Ronnie Garcia
 | 
						|
 * @package GetSimple
 | 
						|
 * @subpackage Files
 | 
						|
 */
 | 
						|
 
 | 
						|
include('inc/common.php');
 | 
						|
login_cookie_check();
 | 
						|
 | 
						|
$path = (isset($_GET['path'])) ? $_GET['path'] . "/" : "";
 | 
						|
$name = clean_img_name($_POST['filename']);
 | 
						|
if (file_exists(GSDATAUPLOADPATH .$path . $name)) {
 | 
						|
	echo 1;
 | 
						|
} else {
 | 
						|
	echo 0;
 | 
						|
}
 |