Código Fonte:



<html>

<head>

<title>PHP</title>

</head>

<body>

<h1>Exercício: Funçoes em PHP</h1>



<?php



function serie($r1,$r2) {

    
$serie=$r1+$r2;

    

    return 
$serie;

}



//Inicio efetivo do script PHP





$resq=serie(10,5);



echo 
"Serie = {$resq}<br>";





?>





</body>

</html>