I'm working on a new php project with CodeIgniter and I have few questions about it.
1 - I created news script, for now I done backend and I'm working on frontend. At frontend I already set last news, but I want to show how many comments at one news there are. I used foreach, but I don't know what's the best method to do next in MVC framework.
<?php
foreach ($query as $news)
{
echo $news->title . "<br>" . $news->content . "<br>";
$commentnum = $this->db->select('id_comment, id_news')->where('id_news', $news->id)->get('comments');
echo $commentnum->num_rows();
}
?>
Okay.. that's some piece of code which I use in other projects. What's the best way to use that code in MVC pattern?
2 - At this news script I have some controller which is named News and in it are functions post, cats and tags. And code which I'm using now, but not works like I want:
$route['news/(:any)'] = "news/post/$1";
So how to exclude post, cats and tags from the route -> If I type news/tags/first, to get the tag first and not error, that the post doesn't exist. How to do that?