<?php
/*
   function: to multiply the two input numbers and display the result
 
   input:
      x, y : numbers

   author:
      Chris Wallace
      9 Oct 2004

*/
 
   
$prod $x $y;
   print 
"$x * $y = $prod";

?>