Hi
I understand the basics of concatenate, but then I saw this example and I am now confused!
$Update = "Update people set " .
"permission_id = '" . $permission_id . "', " .
"username = '" . $username . "', " .
"forename = '" . $forename . "', " .
"surname = '" . $surname . "', " .
"address1 = '" . $address1 . "', " .
"address2 = '" . $address2 . "', " .
"town = '" . $town . "', " .
"postcode = '" . $postcode . "' where id = " . $id;
Please can someone help with explaining it?