Answers for "write a program to demonstrate parameterized function in php"

PHP
1

parameterized function in php

<?PHP
  //Adding two numbers  
  function add($x, $y) {  
    $sum = $x + $y;  
    echo "Sum of two numbers is = $sum <br><br>";  
  }   
  add(467, 943);  
?>
Posted by: Guest on May-29-2021

Code answers related to "write a program to demonstrate parameterized function in php"

Browse Popular Code Answers by Language