I have a content type in Drupal that is a text field that holds a date that the user types in. No, its not an actual date field unfortunately (ugghhh). What I need to do is make a view that has an exposed field that can pull content that is between 2 dates. For example I want to get all of the nodes who's date field is between 2012-09-01 and 2012-09-30.
I'm guessing I could convert these fields using a computed field with strtotime(). But the problem I would run into is not being able to filter between 2 times (basically 2 strings of numbers) in an exposed filter. Is there a way to do that?