I need to create the typical crud app for "articles", is there a standard or sort of a best practice when it comes to this? I know every app and situation varies, but I mean generally.
Secondly, I'm confused a bit on how to handle multiple images associated with a particular article, I was thinking just img tags strewn through out the body of the article as opposed having an images table and referencing images and articles and all that. Just looking for some tips and suggestions on how to handle this kind of thing, as I'm sure most everyone here has done this multiple times.
My article definition as is:
CREATE TABLE `articles` (
`id` int(11) NOT NULL auto_increment,
`issue_id` int(11) default NULL,
`status` text,
`updated_at` date default NULL,
`body` text,
`title` varchar(255) default NULL,
`author` varchar(255) default NULL,
`created_at` date default NULL,
PRIMARY KEY (`id`)
)