I have a strange error with a $_GET Value. I'm using this code for a query:
array($_GET['cats'])
If I insert the get parameter manually, like: array(3,328) everything works fine. But if I use:
array($_GET['cats']) and submit the cats by URL like ?cats=3,328 it does not work. What could be the issue?