This circle has...

A radius of: 23
A diameter of: 46
A circumference of: 144.51326206513
An area of: 1661.902513749

The AREA is 1661.902513749 ---

 

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");

?>