![]() |
Upload images along with my news items ? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Upload images along with my news items ? (/showthread.php?tid=28796) Pages:
1
2
|
Upload images along with my news items ? - El Forum - 03-24-2010 [eluser]invision[/eluser] OK, I've now managed to get 90% of it working ![]() My current code..... Controller(snippet): Code: function create(){ Model(snippet): Code: function addNews(){ Tiny final issue. If I want to send the filename value to my addNews method in my News model, how would I do this? Many thanks for any help. Upload images along with my news items ? - El Forum - 03-24-2010 [eluser]farinspace[/eluser] By the looks of your code you would use the following: Code: $file_name = !empty($data['upload_data']) ? $data['upload_data']['file_name'] : NULL ; Take a look at the File Uploading Class section of the user guide (scroll to the bottom of the page, for all the params you can use): http://ellislab.com/codeigniter/user-guide/libraries/file_uploading.html Upload images along with my news items ? - El Forum - 03-24-2010 [eluser]invision[/eluser] Thanks for the reply. Just to confirm, my Controller would be something like this: Code: ... Would I need to make alts to my addNews function in the model? Like... Code: 'title' => $this->input->post('title'), Thanks again for your help. Upload images along with my news items ? - El Forum - 03-25-2010 [eluser]invision[/eluser] Hey farinspace, Can you give me a little bit more help with this? Thank you. Upload images along with my news items ? - El Forum - 03-25-2010 [eluser]farinspace[/eluser] Your addNews function would be something like this (you'll have to test the code of course): Code: function addNews($file_name) ...and remember to uncomment your code: Code: else Upload images along with my news items ? - El Forum - 03-25-2010 [eluser]invision[/eluser] Wow, brilliant!!!! Many thanks farinspace, you've just made my day ![]() Thank you |