"PHP 자신에게 폼 제출"의 두 판 사이의 차이

16번째 줄: 16번째 줄:
</form>
</form>
</source>
</source>
==참고 자료==
*http://tycoontalk.freelancer.com/php-forum/51903-php-self-submitting-form.html


[[분류: PHP]]
[[분류: PHP]]
[[분류: Form]]
[[분류: Form]]

2012년 4월 1일 (일) 02:32 판

1 test.php

<?php
$action = '';
if(isset($_POST['action']))$action = $_POST['action'];
if($action == 'form_submit') {
  //폼 입력 처리

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

2 참고 자료

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