Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
256 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try with:

if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {}

to check if your script was POSTed.

If additional data was passed, $_POST will not be empty, otherwise it will.

You can use empty method to check if it contains data.

if ( !empty($_POST) ) {}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...