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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…