<?php function setAge($name,$age=25){ echo "$name's Age is $age.<br>"; } setAge("peter",30); setAge("jhon"); setAge("Ethan",56); ?>