
10-18-2007, 02:36 PM
|
|
|
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Nam
Could you give me the full php code, as it's a little confused to me. For example if I want adsense to show on all category, except 3 categories 13, 15, 17. What's the exact code I should put on top of <!-- adsense --> ?
|
this should do it...
PHP Code:
<if condition="!in_array($catid, array(13,15,17))">
<!-- adsense starts -->
<!-- adsense ends -->
</if>
|