PHP 웹프로그래밍
[기타] PHP에서 POST, GET으로 넘어온 값을 전부 출력하기
작성자
꿘쓰
작성일/수정일
2015-10-31 12:06:08 / 2015-10-31 12:06:08
<?php
print_r($_POST);
print_r($_GET);
?>
print_r($_POST);
print_r($_GET);
?>