PHP add thumbnail name script?
-
Hi, I copied this php upload script from: www.w3schools.com. Basiclly, I already have a php script that would upload image files to the web when there's a file name + thumbnail name on the folder. Example: image.jpg (This will be uploaded) image-thumb.jpg (Another copied version with -thumb added uploaded also) Can someone tell me how or where would I add the -thumb on the below script? Thanks <?php if ((($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/pjpeg")) && ($_FILES["file"]["size"] < 20000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . " "; } else { echo "Upload: " . $_FILES["file"]["name"] . " "; echo "Type: " . $_FILES["file"]["type"] . " "; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb "; echo "Temp file: " . $_FILES["file"]["tmp_name"] . " "; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_... "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } } else { echo "Invalid file"; } ?>
-
Answer:
Anytime you use move_uploaded_file, the first parameter is the temp name the system assigns to it. It's usually gibberish. The second parameter is what you would like to call the file. In this script, you're assigning it the original file name you uploaded... but you don't have to do it that way. You could use the temp name, or even a uuid generated name for your file. Could be anything. Hope that helps.
Alvin at Yahoo! Answers Visit the source
Other answers
Anytime you use move_uploaded_file, the first parameter is the temp name the system assigns to it. It's usually gibberish. The second parameter is what you would like to call the file. In this script, you're assigning it the original file name you uploaded... but you don't have to do it that way. You could use the temp name, or even a uuid generated name for your file. Could be anything. Hope that helps.
Related Q & A:
- How to convert Oracle script to MySQL script?Best solution by Stack Overflow
- How to dynamically create a PHP class name on the fly?Best solution by stackoverflow.com
- What are "thumbnail" files?Best solution by Stack Overflow
- How to start creating a php script, that will be installed on many servers?Best solution by Stack Overflow
- How do I change my WiFi SSID name and add a password?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.