함수는 정리정돈의 도구다.

<form action="form.php" method="post">
<p><input type="text" name="title" placeholder="Title"></p>
<p><textarea name="description"></textarea></p>
<p><input type="submit"></p>
</form>

$_GET[]방식을 사용해서 받지만$_POST[]라고하는 배열의 형태로 담아서 우리에게 제공한다. <a href="create.php">create</a>
<form action = "create_process.php" method="post">
<p>
<input type = "text" name="title" placeholder="Title">
</p>
<p>
<textarea name="description" placeholder="Description"></textarea>
</p>
<p>
<input type="submit">
</p>

$_POST['']로 받는다.