MrCBofBCinTX
Technical User
I am having a problem with the following puzzle.
The first version works fine, the second fails.
Is there a way to successfully make the if version work?
but this does not
The first version works fine, the second fails.
Is there a way to successfully make the if version work?
Perl:
unless ( $command eq "ViewRecords"
|| "InsertRecordGroupForm"
|| "UpdateRecordForm"
|| "InsertRecordGroup"
|| "UpdateRecord"
|| "ShowColumns"
|| "ShowTables" )
{
etc
}
but this does not
Perl:
if ( $command ne "ViewRecords"
|| "InsertRecordGroupForm"
|| "UpdateRecordForm"
|| "InsertRecordGroup"
|| "UpdateRecord"
|| "ShowColumns"
|| "ShowTables" )
{
etc
}