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 lo
A simple solution may well be to just use
if (!empty($_POST))