Link to home
Start Free TrialLog in
Avatar of smphil
smphilFlag for Afghanistan

asked on

Explain how to use (isset) and (!) and a example

I want a real good explantion of isset and ! can anyone give a written explantion on them and when and how to use them and a small commented example.
ASKER CERTIFIED SOLUTION
Avatar of stefanaichholzer
stefanaichholzer
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
For more info you may wanna check out the PHP Manual at www.php.net

;)
! is just the negation of something you could get as a boolean result, for example isset() return a boolean type, if you use !isset() you are just asking for the false option of that boolean variable...

;)