I want to know how to detect if $_POST is set or not.
Right now I detect it like this:
if(isset($_POST['value']))
But I'm not looking if value is set anymore. Basically, any POST will work.
if(isset($_POST))
I'm not sure how PHP handle this. Perhabs isset($_POST) is always returns true since it's a PHP global?
Basically, how can I do this?