Hi I have error on this line $counter = ( int ) && 0 < $reccatcnt['arr'] ? "(".$reccatcnt['arr'].")" : ""; How i can fix it? Thank you.
$counter = ( int ) && 0 < $reccatcnt['arr'] ? "(".$reccatcnt['arr'].")" : ""; Something missing in (int) of what, are you trying to type-cast a string like for example (int)N or you can remove the (int) && if its not necessary as $counter = 0 < $reccatcnt['arr'] ? "(".$reccatcnt['arr'].")" : "";