I have this code
if (isset($GET)) { foreach($GET AS $k=>$v) { print "[$k][" . ($v) . "]<br>"; } } $x = "<a href=http://domain.com/self.php?param=マイ>マイ</a>"; print $x; [/code] which calls itself. At second run, this is what is printed [param][%E3%83%9E%E3%82%A4] [/code] How do I get the original value w/ is マイ?
if (isset($GET)) { foreach($GET AS $k=>$v) { print "[$k][" . ($v) . "]<br>"; } } $x = "<a href=http://domain.com/self.php?param=マイ>マイ</a>"; print $x; [/code]
which calls itself. At second run, this is what is printed
[param][%E3%83%9E%E3%82%A4] [/code] How do I get the original value w/ is マイ?
[param][%E3%83%9E%E3%82%A4] [/code]
How do I get the original value w/ is
マイ
?