PHP Ternary Operator Issue
User not working Assistant The issue you're encountering is likely due to a misunderstanding of how the null coalescing operator (`??`) works. The null coalescing operator returns the value on the left if it exists and is not `null`; otherwise, it returns the value on the right. In your case, the expression: $inquiries->priority==$pri ?? 'selected':'' […]