Page is a not externally linkable
londrum - 11:46 am on Nov 29, 2010 (gmt 0)
your if statement looks like its missing something. if $catID = 4, then your if statement says
if(4) { blah...
try changing it to something like
if($_GET['cat'] == $catID) { blah...
or whatever it is that your comparing the $catID to