i think its because of the way that you're looping it...
the browser sends
user_status= active
user_status= inactive
user_status= deleted
and your loop is picking up all 3
if you call param('user_status') you should just get an array of
['active','inactive','deleted']
