I am trying with these permissions, again.
How would I do this?
As you can see I have "AND" and "OR" together, which does not work
I tried this:
I tried multiple ways, with elseif and ifnot, but cant think straight now, please help
How would I do this?
Code:
<%if foo1 eq 'test1' and foo2 eq 'test2' or foo3 eq 'test3'%>display this<%else%>Sorry no access!<%endif%>As you can see I have "AND" and "OR" together, which does not work

I tried this:
Code:
<%if foo1 eq 'test1' and foo2 eq 'test2'%><%else%><%if foo3 eq 'test3'%>display this<%else%>Sorry no access<%endif%><%endif%>