i have form file delete anybody can help make file clone instead of delete.
<?php
if(isset($_POST['filed'])){
unlink($_POST['file']);
}
?>
<form action="delet.php" method="post">
<b>Name of file(on the server):</b><INPUT type='text' Name='file'><Br>
<INPUT type='Submit' Name='filed' Value='Delete File'>
</form>