<html>
<body bgcolor="#fad888">
<form>
<textarea width="90%" growable autoactivate name="input"><?
$input = $_REQUEST[input];
if ( isset($input) && !empty($input) )
{
$input = stripslashes($input);
$input = ucwords($input);
echo "$input"; }
else { echo "test test tEsT "; }
?></textarea><br />
<input type="submit">
</form>
</body>
</html>