This circle has...

A radius of: 53
A diameter of: 106
A circumference of: 333.00882128052
An area of: 8824.7337639337

The AREA is 8824.7337639337 ---

 

CODE FOLLOWS

<?php

    
include("includes/header.php");

    
$r rand(0,100);

    
$radius $r;
    
$diameter $radius 2;
    
$circumference M_PI $diameter;
    
$area M_PI pow($radius2);

    echo(
'<h1>This circle has...</h1>');
    echo(
"A radius of: $radius <br>");
    echo(
"A diameter of: $diameter <br>");
    echo(
"A circumference of: $circumference <br>");
    echo(
'An area of: ' $area '<br>');

    echo(
"<h1>The AREA is $area ---</h1>");

    include(
"includes/footer.php");

?>