Restricting Stuff

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

1 Like

thanks a lot +1