Originally, I had problems w/ the file being placed inC:/whatever.ext b/c I wasn't using relative paths.This is the code I use:-------------------------------- $MAXIMUM_FILESIZE = 1024 * 1024 * 2; // 2MB $newFileLoc = "./wherever/file.jpg" if ($_FILES['Filedata']['size'] <= $MAXIMUM_FILESIZE) { m...