Assuming what you have <form method="post" ...>, you should use $_POST. You can check one field, for example:
if ( isset($_POST['action']) )
or any field:
if ( 0 < count($_POST) )
or check the request method:
if ( $_SERVER['REQUEST_METHOD'] === 'POST' )
or a combination above :)
, , . , , .