[Deprecated] $HTTP_POST_VARS 대체

$HTTP_POST_VARS는 $_POST로 대체 가능

// Bad
$HTTP_POST_VARS['post'];

// Good
$_POST['post'];