1) Make the following changes to category_home.php //get all categories $all_categories = array(); $sql = "SELECT * FROM channels"; $query = @mysql_query($sql); while ($result = @mysql_fetch_array($query)){ //------ BEGIN CHANGE for number of videos in each Category $channel_name = $result['channel_name']; $sql0 = "SELECT * FROM videos WHERE channel = '$channel_name' AND approved = 'yes'"; $query0 = @mysql_query($sql0); $num_videos=mysql_num_rows($query0); $new_array = @array_merge($result, array('num_videos' => $num_videos)); //$all_categories[] = $result; $all_categories[] = $new_array; //------ END CHANGE for number of videos in each Category } //get all category videos 2) Make the following changes to templates/inner_category_home.htm   [blk1.channel_name;block=tr;ope=max:25;comm] ([blk1.num_videos;block=tr])