fork download
  1. <?php
  2. header('Content-Type: text/html; charset=utf-8');
  3. //header('Accept-Ranges: bytes');
  4.  
  5. $nome_real = $_FILES["Arquivo"]["name"];
  6. $pastadestino = "/pasta/$nome_real";
  7.  
  8. //verifica antes de passar - para apagar o existente
  9. if (file_exists($pastadestino))
  10. {
  11. echo "OK";
  12. }
  13. else
  14. {
  15. echo "NOK";
  16. }
Success #stdin #stdout #stderr 0.02s 52432KB
stdin
Standard input is empty
stdout
NOK
stderr
PHP Notice:  Undefined index: Arquivo in /home/pa8l4q/prog.php on line 5