Welcome Guest, Not a member yet? Register   Sign In
How to add thumbnail in articles in my codeigniter blog?
#1

[eluser]Unknown[/eluser]
Hello Developers,

I have created a blog CMS and successfully fetches all data like: categories, pages, articles by category name etc.

But Now I want to add thumbnail image in my post articles. I am new at Codeigniter. So I need help.

I give my article table in below:

Code:
CREATE TABLE `articles` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `slug` varchar(100) NOT NULL,
  `pubdate` date NOT NULL,
  `body` text NOT NULL,
  `created` datetime NOT NULL,
  `modified` datetime NOT NULL,
  `category_id` int(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=23 ;

How to upload this thumbnail with article and how fetch this thumbnail image in articles view.

Please help me.
#2

[eluser]CroNiX[/eluser]
Look at the upload helper. Also, I wouldn't store the image in the database. I'd store the path to the image and leave the image on the filesystem.




Theme © iAndrew 2016 - Forum software by © MyBB