in reply to syntax issues
should employ the 'eq' string comparison operator rather than the '==' numeric comparison operator, like so:if ($ispresent =='false') {
This is one of those little 'top-10-things-to-check-for' perl quirks.if ($ispresent eq 'false') {
|
|---|