![]() |
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-22-2010 [eluser]invision[/eluser] Hi, Recently I built an incredibly basic news management system for my own portfolio site. I'd like to extend this to show thumbnails for each news post. I would love to get a little help in doing this. I've attached my code so far for reference. Here's my Model: Code: function addNews(){ My View: Code: <h1><?php echo $title;?></h1> and my Controller: Code: function create(){ I was using this as a resource but I struggled with it. I basically want to upload an image to be associated with each news entry. I'd love some help with this. Many thanks. Upload images along with my news items ? - El Forum - 03-22-2010 [eluser]farinspace[/eluser] Sorry if i don't get too detailed, but hopefully I can point you in the right direction. Your "addNews" method will need something like this to handle the uploaded file: Code: $config = array Upload images along with my news items ? - El Forum - 03-23-2010 [eluser]invision[/eluser] Thanks for the reply. I actually did try something like that before posting here. I'll give it another shot and see how I go. Will be back shortly ![]() Upload images along with my news items ? - El Forum - 03-23-2010 [eluser]Phil Sturgeon[/eluser] What does the code for your attempt look like. Upload images along with my news items ? - El Forum - 03-23-2010 [eluser]invision[/eluser] Many thanks for the reply Phil. Code: function addNews(){ I've tried to put this together from the Upload class at CI : http://ellislab.com/codeigniter/user-guide/libraries/file_uploading.html Upload images along with my news items ? - El Forum - 03-23-2010 [eluser]Phil Sturgeon[/eluser] You have commented out the single most important line. Code: $this->upload->do_upload() Upload images along with my news items ? - El Forum - 03-23-2010 [eluser]invision[/eluser] <snip> Upload images along with my news items ? - El Forum - 03-23-2010 [eluser]invision[/eluser] <snip> Upload images along with my news items ? - El Forum - 03-24-2010 [eluser]invision[/eluser] <snip> Upload images along with my news items ? - El Forum - 03-24-2010 [eluser]invision[/eluser] <snip> |