Skip to content

Instantly share code, notes, and snippets.

@saaeiddev
Last active October 28, 2022 16:09
Show Gist options
  • Select an option

  • Save saaeiddev/c472595100d643e3155bdf7d1ea2007a to your computer and use it in GitHub Desktop.

Select an option

Save saaeiddev/c472595100d643e3155bdf7d1ea2007a to your computer and use it in GitHub Desktop.
<?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