File: totalfunction.php ← Back to List
Live Output
The Total Is, 7
The Total Is, 123
Source Code
<?php
    function ToT($n1,$n2){
        $tot=$n1+$n2;
        echo "The Total Is, $tot <br>";
    }
    ToT(3,4);
    ToT(45,78);
?>