James142 Posted February 16, 2011 Report Share Posted February 16, 2011 Hello, I was making a page on my site for pilots which has discount codes for them to use on flight sim websites, but i wanted them to only be able to access the page when they have completed a certain number of flying hours (so people wont just join to ge tthe discount then never being seen flying with the va again) So I was wondering if there was a code for this? Thanks, James Quote Link to comment Share on other sites More sharing options...
Guest lorathon Posted February 16, 2011 Report Share Posted February 16, 2011 if(AUTH::$userinfo->totalhours > 100) { // show-do your stuff here } else { echo "You do not have enough hours to view this page"; } Quote Link to comment Share on other sites More sharing options...
James142 Posted February 16, 2011 Author Report Share Posted February 16, 2011 if(AUTH::$userinfo->totalhours > 100) { // show-do your stuff here } else { echo "You do not have enough hours to view this page"; } Great thanks! James Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.