Created
February 6, 2023 17:27
-
-
Save ImtiazEpu/077ddaf0b0faf6039aab8cfe9b7b2a37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$tuition_fee = 25000; | |
$commission = (20000 < $tuition_fee) ? 'Your commission is twenty-five percent' :((10000 < $tuition_fee && 20000 >= $tuition_fee)?'Your commission is twenty percent':((7000 < $tuition_fee && 10000 >= $tuition_fee)?'Your commission is fifteen percent':'invalid')); | |
echo $commission; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment