SyntaxFix
Write A Post
Hire A Developer
Questions
unset()
unset($_POST); $_POST = array();
Or in a single statement:
unset($_POST) ? $_POST = array() : $_POST = array();
But what is the reason you want to do this?