i have the variable $uid
that always contain a number.
I want to execute different actions depending on how the $uid
ends.
For example:
if(&uid ENDS WITH 2,3 or 4) {echo "Some content"};
else if($uid ENDS WITH 1,5 or 6) {echo "Some other content"};
else if($uid ENDS WITH 7,8,9 or 0) {echo "Some other content"};
Nothing comes on my mind how to achieve this. Thanks in advance for Your time!