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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(사용자 2명의 중간 판 15개는 보이지 않습니다)
1번째 줄: 1번째 줄:
*PHP 자신에게 폼 제출
;PHP 자신에게 폼 제출


==test.php==
==test.php==
<source lang='php'>
<syntaxhighlight lang='php'>
<!DOCTYPE html>
<!DOCTYPE html>
<meta charset="utf-8" />
<meta charset="utf-8" />
8번째 줄: 8번째 줄:
$action = '';
$action = '';
if(isset($_POST['action']))$action = $_POST['action'];
if(isset($_POST['action']))$action = $_POST['action'];
//폼이 입력되었을 때 처리부
if($action == 'form_submit') {
if($action == 'form_submit') {
  //폼 입력 처리
   echo '<xmp>';
   echo '<xmp>';
   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="button" value="제출하기" />
  <input type="submit" value="제출하기" />
</form>
</form>
</source>
</syntaxhighlight>
 
==같이 보기==
*[[PHP로 엑셀 자료 MySQL에 넣기]]
*[[$_SERVER('PHP_SELF')|$_SERVER['PHP_SELF']]]


==참고 자료==
==참고==
*http://tycoontalk.freelancer.com/php-forum/51903-php-self-submitting-form.html
*http://tycoontalk.freelancer.com/php-forum/51903-php-self-submitting-form.html


[[분류: PHP]]
[[분류: PHP]]
[[분류: Form]]
[[분류: HTML form]]

2020년 11월 2일 (월) 02:35 기준 최신판

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

2 같이 보기[ | ]

3 참고[ | ]

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