관리-도구
편집 파일: post.php
<? header ('Content-type: text/html; charset=utf-8'); print "Here you can see what files were processed and what file information you can get from XUpload<br><br>"; print "<b>Files data:</b><br><hr>"; if($_GET){$FF=$_GET;} else {$FF=$_POST;} $i=0; foreach ($FF["file_name"] as $fname) { print "Filename: $fname"; print "<br>Orignal Filename:".$FF["file_name_orig"][$i]; print "<br>File Size:".$FF["file_size"][$i]; print "<br>File Status:".$FF["file_status"][$i]; print "<br>File Description:".$FF["file_descr"][$i]; print "<br>File MIME:".$FF["file_mime"][$i]; print "<hr>"; $i++; } print "<br><b>Other variables:</b><br>"; foreach($FF as $key => $value) { if(!is_array($value)){ print "$key => $value<br>"; } } ?>