<html>
<body bgcolor="#fad888">
<form>
<textarea width="90%" growable autoactivate name="input"><?
$input = $_REQUEST[input];
if ( isset($input) && !empty($input) )
{
$input = stripslashes($input);
echo "$input"; }
else { echo "<html>
<body>
<a href=\"URL\">link</a><br />
<? echo \"this is a test\"; ?> <br />
<img src=\"URL\" height=\"12\" width=\"12\" />
</body>
</html>"; }
?></textarea><br />
<input type="submit">
<br .>
<?
if ( isset($input) && !empty($input) )
{
highlight_string($input);
}
?>
</form>
</body>
</html>