GET과 POST

개발은개발·2020년 12월 11일
0

PHP

목록 보기
5/9
post-thumbnail

GET과 POST

HTTP Method로는 GET방식과 POST방식이 있습니다. 오늘은 그 두가지의 특징과 차이점에 대해 알아보겠습니다.


📕 GET방식

getpost.html

<html>
    <body>
        <form method="GET" action="getpost.php">
            id : <input type="text" name="id">
            pw : <input type="password" name="pw">
            <input type="submit">
        </form>
    </body>
</html>

getpost.php

<?php
echo $_GET['id'].",".$_GET["pw"];
?>

📕 POST방식

getpost.html

<html>
    <body>
        <form method="POST" action="getpost.php">
            id : <input type="text" name="id">
            pw : <input type="password" name="pw">
            <input type="submit">
        </form>
    </body>
</html>

getpost.php

<?php
echo $_POST['id'].",".$_POST["pw"];
?>

참고

https://hongsii.github.io/2017/08/02/what-is-the-difference-get-and-post/

0개의 댓글