HTML/PHP question. File Uploads
-
hello. i've already created a file upload forum, im just having trouble uploading and saving files on my hard drive, im testing it on an offline website on adobe dreamweaver. whenever i choose and upload a file it will link me directly to my php upload file (upload_file.php), shown below..... <?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"; } ?> i think i need an FTP to save files onto my Macbook. P.s How do i setup my Macbook as a Personal Server.
-
Answer:
First of all I would ask the mac-book as a personal server as a separate question because its a folding question for sure! Secondly, i would take a look at this script as inspiration, what your doing can be simplified a lot http://www.webdevboost.co.uk/Programming-Language/PHP/Multiple-File-Upload/
mr. deo at Yahoo! Answers Visit the source
Related Q & A:
- How to parse .log file and insert into database in PHP?Best solution by unix.com
- How to upload a file to another server using cURL and PHP?Best solution by Stack Overflow
- How convert .txt file to .Dat file in php?Best solution by Stack Overflow
- How to convert a HTML file to XML file?Best solution by Stack Overflow
- Why are HTML and PHP forms not working?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.