25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /*
- Uploadify
- 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;
- }
- ?>
|