It’s probably a bit of an easy question but its confusing me and this is the only place were I know people who understand PHP so sorry about the question.
I have the following piece of code
$company = ($_GET['company']);
if (!isset($username) {
Please could someone explain to me exactly what this is doing??? I know the isset function returns true if a variable is set but what does the ! do before the isset function???
Thank You