<?php //am defining funciton here function checkingResults($name, $marks){ echo "hi ".$name; echo "<br/>"; echo "Your total score: ".$marks; } checkingResults("denim", 125); ?>