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

14번째 줄: 14번째 줄:
   print_r($_POST);
   print_r($_POST);
   echo '</xmp>';
   echo '</xmp>';
 
   exit;
   exit;
}
}
?>
?>
<form methed="post" action="test.php">
<form method="post" action="<?=$_SERVER['PHP_SELF']?>">
<input type="hidden" name="action" value="form_submit" />
<input type="hidden" name="action" value="form_submit" />
<textarea name="textarea1"></textarea>
<textarea name="textarea1"></textarea>
<input type="submit" value="제출하기" />
<input type="submit" value="제출하기" />
</form>
</form>
</source>


==참고 자료==
==참고 자료==

2012년 4월 1일 (일) 20:50 판

  • PHP 자신에게 폼 제출

1 test.php

<source lang='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 method="post" action="<?=$_SERVER['PHP_SELF']?>"> <input type="hidden" name="action" value="form_submit" /> <textarea name="textarea1"></textarea> <input type="submit" value="제출하기" /> </form>

2 참고 자료

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