Again Thanks for all the help Great Article.
Most of my problem boiled down to the sql statment.
I had
Code:
SELECT DISTINCT COUNT(blah
When I should have had.
Code:
SELECT COUNT(DISTINCT blah
So even with _GET it wasn't working correctly.
I used this same tutorial on several other pages of mine and it went flawlessly.
Thanks again for the fast answers and the great help.
P.S. I secure my code after its working just to narrow down problems.