Functions Php


  function addition ($a, $b){
      echo ($a + $b), "\n";
  }
  $result = "addition";
  $result (3,6);
?>