View file news/cnt.php

File size: 204B
<?php
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
$messages = mysql_query("select * from `news` where type='news';");
$count = mysql_num_rows($messages);
echo "$count";
?>