Jump to content

Help! Need to submit files with captcha enabled


Fabricio

Recommended Posts

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?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.