xxxxxxxxxx
<?php
// Define the radius of the circle
$radius = 5;
// Calculate the area of the circle using the formula A = πr^2
$area = pi() * pow($radius, 2);
// Display the result
echo "The area of a circle with radius $radius is $area square units.";
?>