100k views
4 votes
It is a function that saves the uploaded file permanently into the server.

Select one:

a. save_uploaded_file()

b. store_uploaded_file()

c. make_uploaded_file()

d. move_uploaded_file()

User Ceyhun
by
5.7k points

1 Answer

1 vote

Answer:

(c) move_uploaded_file()

Step-by-step explanation:

move_uploaded_file() is used to save the uploaded file on the server.It basically moves the uploaded file to a new location and return True if moving is successful and false if the moving is not successful.

move_uploaded_file(file,destination)

file-The file you need to move.

destination-Where the file need to be moved.

To save the file on to the server the destination must be a location in the server.

User Shreeni
by
5.2k points