Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $optionsMonth = array('options'=>array('min_range'=>1, 'max_range'=>12));
  2. $optionsYear = array('options'=>array('min_range'=>1900, 'max_range'=>9999));
  3.  
  4. if ((filter_input(INPUT_GET, 'month', FILTER_VALIDATE_INT, $optionsMonth))&&(filter_input(INPUT_GET, 'year', FILTER_VALIDATE_INT, $optionsYear))){
  5. $month = filter_input(INPUT_GET, 'month', FILTER_VALIDATE_INT, $optionsMonth );
  6. $year = filter_input(INPUT_GET, 'year', FILTER_VALIDATE_INT, $optionsYear);
  7. } else {
  8. $datetime = new Datetime('NOW');
  9. $month = $datetime->format('m');
  10. $year = $datetime->format('Y');
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement