Just wondering if it is possible to hide something from pilots if they haven’t done a PIREP yet or visa versa. If it is possible could somebody please help me out with it?
Thanks,
Just wondering if it is possible to hide something from pilots if they haven’t done a PIREP yet or visa versa. If it is possible could somebody please help me out with it?
Thanks,
Hello,
<?php
if ($userinfo->totalflights<1)
echo "You Have Not Completed A Flight Yet Please File A Report To Avoid Being Removed"
?>
That’s if you haven’t completed a flight yet, so:
<?php
if ($userinfo->totalflights>1)
}
?>
Show whatever
<?php
}
?>
Hope That Helps!
Jon
thanks a lot +1