Hi,
I want to create a place to receive large files from my customers. This is how it supposed to look like:
http://sextantecontratos.com.br/restrito.php
It should be able to let user upload files <30MB and with specifc extensions shown. However, I'm not able to make it fully working.
I did get file upload succesfully thru coding below, which means my server is ok.
<html> <body>
<form enctype="multipart/form-data" action="teste.php" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="32000000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form></body></html>
and
<?php
$uploaddir = './';
$uploadfile = $uploaddir . $_FILES['userfile']['name'];
print "<pre>";
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploaddir . $_FILES['userfile']['name']))
{print "TESTE OK (arquivo valido e carregado com sucesso). Dados:\n"; print_r($_FILES);}
else {print "ERRO NA OPERAΓΓO. Dados:\n"; print_r($_FILES);}
print "</pre>";
?>
But when I face the "restrito.php" code, I can't make it work...
Can anyone please help?