Write a PHPscript to find maximum of three numbers.

<?php
$a = 10; $b = 25; $c = 15;
echo "The maximum number is " . max($a, $b, $c) . ".";
?>