codeigniter-download

How to download an uploaded image in PHP Codeigniter

流过昼夜 提交于 2019-12-11 15:16:34
问题 I have uploaded an image and then applied rotation operation on the image and fetch the flipped image in other view, now how to download that flipped image please guide me? View code for uploading image: <input type='file' name="userfile" size="20"> <input type="submit" name="upload" value="Flip"> Controller code for flip: $data['title'] ='Flip Image'; $upload['upload_path'] = './assets/images/'; $upload['allowed_types'] = 'gif|jpg|jpeg|png'; $this->load->library('upload',$upload); $filedata1