Advertisement
fabi0

Untitled

Oct 6th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function _watchFilter() {
  2.     if (isset($_POST['category']) && (int) $_POST['category'] > 0) {
  3.         $_SESSION['_filter'] = (int) $_POST['category'];
  4.         $_SESSION['_filterMSG'] = 'WHERE messages.gid = ' . (int) $_POST['category'];
  5.     } else {
  6.         $_SESSION['_filter'] = 0;
  7.         $_SESSION['_filterMSG'] = '';
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement