Hello I need some help with a tiny php math problem. I have Currently a user has to reffer 30 people to my site, and then it has a countdown on how many left to go. When they reach over 30, the "X more refferals to go" starts going negative..... Example: 41 Refferals! -11 more refferals to go! Anyway to make it stop at 30 and stop going negatively? Thank you.
<?php if (!($count >= 30)) { // Put your code for saying how many referrals here // } else { // The person has 30 referrals // } ?> Code (markup):