Jump to content

php file upload


umas

Recommended Posts

In file uploading (through a form usig browse button)

It is not possible to access the temporary folder where tmp file is created.

The file doesnt get uploaded and hence cannot see the uploaded file in the directory.

An error appears as the file doesnot exists in the folder.

i couldnt set the permission also

I use php 4 version. It works fine in local test server. But in main server it doesnt.

 

$file=$_FILES['file_cv']['name'];

$tmpfile=$_FILES['file_cv']['tmp_name'];

if(!empty($file))

{

$uploaddir = "accountantscv/$file";

move_uploaded_file($_FILES["file_cv"]["tmp_name"], $uploaddir);

Link to comment
https://forums.phpfreaks.com/topic/48436-php-file-upload/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.