Hi
I am trying to upload a zip file and the zip is not uploading, in the same code there are normal files that are uploading, just the zip file don´t get uploaded.
I am using the same kind of code, for both normal files and the zip file , where do i am wrong?
Here is some pieces of my code:
<input type="hidden" name="MAX_FILE_SIZE" value="30000000">
<input name="file_zip" type="file" size="40">
$arquivo_zip = $_FILES['file_zip']['name'];
$linkfile_zip = $FILES['file_zip']['name'];
$x = move_uploaded_file($FILES['file_zip']['tmp_name'], $uploaddir . $_FILES['file_zip']['name']);
$rs = mysql_query("INSERT INTO TABLE (title, file_zip) VALUES ('$title','$linkfile_zip')",$conn);