<?php
function toplama($sayi1, $sayi2){

    echo $sayi1." + ".$sayi2." = ".$sayi1+$sayi2;
}
toplama(99,88);
?>
Hata;
Notice: A non well formed numeric value encountered in C:\xampp\htdocs\index.php on line 5
187