본문 바로가기

php

[php]겟메소드 get method 포스트메소드 post method

<form action="/webzine/webzine_view.php" target="_blank" method="post">
//메소드는 포스트 or 겟
	<input type="text" value="<?=$webzine_name?>" name="id">
	<input type="submit">
</form>

 

최소 기본 셋팅임

메소드 타입 미지정시 전송 방식은 get

//포스트는 url에 나타나지않음

input text에 밸류값으로 컨트롤

 

===================================

js 쿼리 값 반환

location.search

ex_

https://www.nate.com/?f=news 

location.search → ?f=news


top