05/03/13 17:39:57
<?php
header("Content-type: text/html; charset=Shift_JIS");
$text = str_replace("は","l£", $text);
$text = str_replace("あ","ぁ", $text);
?>
<html>
<head>
<title>ギャル文字変換</title>
</head>
<body>
<form action="<?=$_SERVER['PHP_SELF']?>" method="GET">
<textarea name="gyaru" rows="10" cols="30"></textarea><br>
<input type=submit value="ギャル文字変換">
</form>
</body>
</html>