You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$cQuery = 'SELECT vEmail,vPhone FROM company WHERE `iCompanyId` = "' . $iCompanyId . '"';
$CompanyOldData = $obj->MySQLSelect($cQuery);
$OldEmail = $CompanyOldData[0]['vEmail'];
$OldPhone = $CompanyOldData[0]['vPhone'];
if ($COMPANY_EMAIL_VERIFICATION == 'Yes') {
if ($OldEmail != $vEmail) {
echo 'Please note that changing phone/email will require to verify. You will become offline and need to be online again to verify your new phone/email.';
}
}
if ($COMPANY_PHONE_VERIFICATION == 'Yes') {
if ($OldPhone != $vPhone) {
echo 'Please note that changing phone/email will require to verify. You will become offline and need to be online again to verify your new phone/email.';