[PHP] include 페이지에 POST 데이터 넘기기 PHP 페이지를 include 할때 특정 데이터를 POST 방식으로 넘겨줄 수 있다 [예제] 1234<?$_POST["key"] = "value";include("file.php");?>cs file.php 파일을 include 할때 key 라는 POST 변수에 value 라는 데이터를 넘겨준다 Programming/PHP 2015.10.06