/home/mjc1/public_html/get_test.php


1
2
3
4
5
<?php
    header
("Content-Type: text/html; charset=UTF-8");
    
$_GET["p1"] = iconv("EUCKR","UTF-8",$_GET["p1"]);
    echo (
$_GET["p1"] . " " $_GET["p2"] . " " $_GET["p3"]);
?>