Isset not working

if(isset($_POST[‘name’]))
{
operations
}
not working what i do

How it doesn’t work? You should check it with var_dump(isset($_POST['name']));

1 Like

Wrong quotes type again. It’s supposed to be var_dump(isset($_POST['name'])); instead.

1 Like

What do you mean by “not working”. Do you have a URL where we can test this? Did you try dumping the specific $_POST variable or the entire post array to see if the data is there to begin with? Do you try other variables to see if the isset function works then?

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.