class Common
{
	public static function getPost($var, $default=false) {
		
		if (isset($_POST[$var])) {
			if (get_magic_quotes_gpc() == 1) {
				return stripslashes($_POST[$var]);
			}
			else {
				return $_POST[$var]; 
			}
		}
		else {
			return $default;
		}
	}
}