Skip to content

Instantly share code, notes, and snippets.

@ImtiazEpu
Created February 6, 2023 17:27
Show Gist options
  • Save ImtiazEpu/077ddaf0b0faf6039aab8cfe9b7b2a37 to your computer and use it in GitHub Desktop.
Save ImtiazEpu/077ddaf0b0faf6039aab8cfe9b7b2a37 to your computer and use it in GitHub Desktop.
<?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