<!DOCTYPE html>
<html>
<body>

<?php
$deg = 180;
$rad = deg2rad($deg);
echo "$deg degrees is equal to $rad radians.";
?>


</body>
</html>