I am working on building a news section for one of my sites. I am storing the information for each news article in a database table \[code\]news\[/code\], the main text of the article is in column \[code\]copy\[/code\] whose type is set to \[code\]longtext\[/code\].I use the following line of code to display the news article as paragraphs:\[code\]<p class="news_copy"><?php echo preg_replace('/[\r\n]+/', '</p><p class="news_copy">', $news['copy']); ?></p>\[/code\]and it works absolutely perfect.The reason for this post is because I would like to be able to display more then one photo for each news article. I am setting a lead image in the database, but if there were, say, 4 other photos in one story and 6 in another (in addition to the lead image) is there any way for me to display, say, 1 or more photo(s) per paragraph?I'll be happy to elaborate in case this is too confusing.Many thanks!