I have a search App which works fine. It is called from the menu just to assign a global variable from the selection list (drop down list). I need to test against another global variable and no matter where I put the code it does not work. Any clue ?
[glo_customerid]=0;
[glo_customername]='';
$error_test = [glo_companyid] == 0; // Error test
$error_message = 'ALERT! Company not selected !'; // Error message
if ($error_test)
{
sc_alert($error_message);
}
Arthur