Your IP : 216.73.216.79


Current Path : /var/www/html/aipa/www/ebook/php/admin_files/controls/
Upload File :
Current File : /var/www/html/aipa/www/ebook/php/admin_files/controls/check-exists.php

<?php
/*
Uploadify v3.1.0
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/

// Define a destination
$targetFolder = '/uploads'; // Relative to the root and should match the upload folder in the uploader script

if (file_exists($_SERVER['DOCUMENT_ROOT'] . $targetFolder . '/' . $_POST['filename'])) {
	echo 1;
} else {
	echo 0;
}
?>