Hi I want to show every category exept 2-3 category in my blogs first page. like:
this is my categories:
Now I dont want to show 2-3 category in the first page. what to do? So far I only can hide 1 category with this code:
but I need more than one to hide from the first/index page. what to do, please help.
this is my categories:
Code:
recent world, movie review, article review, game review, personal experience, life in a metro, other category
PHP Code:
$result = mysql_query("SELECT * FROM blog WHERE id!='' and cat!='10' order by id desc LIMIT $from, $rpp");
while ($row = mysql_fetch_array($result)) {
}
Comment