File "remove.php"

Full Path: /home/analogde/www/Massage_v3_debug/MASSAGE_TEST/FTP/remove.php
File size: 177 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


	$filename = $_GET["filename"];
	$folder = $_GET["folder"];
	
	chdir($folder);
	
	unlink($filename);
	
	chdir("..");
	
	header ('Location: FTP02.php');

?>