<!DOCTYPE html>
<?php
$name = $_REQUEST["name"];
?>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Sample01(form->php)</title>
<head>
<body>
My name is <font color="FF0000"><?php print $name; ?></font>.
</body>
</html>