<?php

$color = 'blue';
$size = '15pt';

if (isset($_POST['color']))
	$color = $_POST['color'];

if (isset($_POST['size']))
	$size = $_POST['size'];

// Print date/time in RFC 2822 format
echo "<span style='color:$color; font-size:$size'>" .
	date("r") . "</span>\n";

?>
