PHP 자신에게 폼 제출

Jmnote (토론 | 기여)님의 2012년 4월 1일 (일) 02:39 판
  • PHP 자신에게 폼 제출

1 test.php

<!DOCTYPE html>
<meta charset="utf-8" />
<?php
$action = '';
if(isset($_POST['action']))$action = $_POST['action'];
if($action == 'form_submit') {
  //폼 입력 처리
  echo '<xmp>';
  print_r($_POST);
  echo '</xmp>';

  exit;
}
?>
<form methed="post" action="test.php">
<input type="hidden" name="action" value="form_submit" />
<textarea name="textarea1"></textarea>
<input type="button" value="제출하기" />
</form>

2 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}