This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may ...
Home/Question Sidebar/Page 3
StackOverflow Latest Questions
try following for resizing the image: getData(); $uploadedFile = $data['profielfoto']; // get the original file info $originalPath = $uploadedFile['tmp_name']; $originalName = $uploadedFile['name']; $targetDirectory = dirname($originalPath); // original dir // create new filename $info = pathinfo($originalName); $resizedFilename = $info['filename'] . '_resized.' . $info['extension']; $resizedPath = $targetDirectory . ...