How can post data be cleared without using a link in PHP?

To clear post data without using a link in PHP, you can simply unset the $_POST array. This will remove all the data that was sent via POST method.

unset($_POST);