Last active
October 28, 2022 16:09
-
-
Save saaeiddev/c472595100d643e3155bdf7d1ea2007a 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 | |
| function Division($a , $b , $c){ | |
| return $a / $b / $c; | |
| } | |
| $a = 15; | |
| $b = 6; | |
| $c = 2; | |
| $r = Division($a , $b , $c); | |
| echo $r; | |
| if($r > 10){ | |
| echo "yes, this is bigger than ten"; | |
| } | |
| else{ | |
| echo "no, not bigger"; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment