PHP, $_REQUEST , $_GET and $_POST $temp = $_REQUEST['s'];orif (isset($_GET['s'])) { $temp = $_GET['s']; } else { $temp = $_POST['s']; } $_REQUEST, by default, contains the contents of $_GET, $_POST and $_COOKIE. 세상이야기 2016.01.08