I have an upload script
i want it to remove the spaces in the file name when uploaded
quick fix??????
also anytime i upload a file over like 1 meg
i get There was an error uploading the file, please try again!
i know what the issue is ... but i increase the size but i think im doing it right
what value would I put for like max 200megs
Code:
<?php
// Where the file is going to be placed
$target_path = "uploads/";
/* Add the original filename to our target path.
Result is "uploads/filename.extension" */
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
$_FILES['uploadedfile']['tmp_name'];
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}
?>
i want it to remove the spaces in the file name when uploaded
quick fix??????
also anytime i upload a file over like 1 meg
i get There was an error uploading the file, please try again!
i know what the issue is ... but i increase the size but i think im doing it right
Code:
<html> <form enctype="multipart/form-data" action="uploader.php" method=hahahahahaha> <input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Choose a file to upload: <input name="uploadedfile" type="file" /><br /> <input type="submit" value="Upload File" /> </form> </html>
what value would I put for like max 200megs


Comment