Welcome Guest, Not a member yet? Register   Sign In
Simple Question: Expanding on the Blog Tutorial
#2

[eluser]Bainzy[/eluser]
Hi,

the simple way in which to show the number of comments is to modify the controller slightly, all you need to do is in the controller change the line that reads

Code:
$data['query'] = $this->db->get('comments');

to

Code:
$data['comments'] = $this->db->get('comments');

then on your view file have the following or something similar

Code:
&lt;?php echo '<cite>'.count($comments).'</cite>'; ?&gt;

the simple count statement will count how many results are in the comments table.

Hope this helps


Messages In This Thread
Simple Question: Expanding on the Blog Tutorial - by El Forum - 02-13-2010, 05:56 AM
Simple Question: Expanding on the Blog Tutorial - by El Forum - 02-13-2010, 06:43 AM
Simple Question: Expanding on the Blog Tutorial - by El Forum - 02-13-2010, 03:59 PM
Simple Question: Expanding on the Blog Tutorial - by El Forum - 02-14-2010, 01:59 PM
Simple Question: Expanding on the Blog Tutorial - by El Forum - 02-15-2010, 04:45 AM



Theme © iAndrew 2016 - Forum software by © MyBB