I am reading a book and there is the following code inside :
if ( !isset( $_POST[$requiredField] ) or !$_POST[$requiredField] )
I can understand the first part of the use of isset function but I cannot understand what the second part does.
Any ideas?
Thank you very much.