Hi all!
I want to show some content if is any $_POST[''] input.
Ex. index.php?show=page where $_POST is $_POST['show'] and I have many $_POST.
Now I want a case like:
if (!$_POST['*']) { $content="bla bla"; }
What can use * or '' blank into POST to mean there is any input?