HTML form enctype Attribute The HTML form enctype attribute’s main purpose is to indicate how the form data/values should be encoded prior to it being sent to the location defined in the action attribute on the form.   for e.g. <form action=”scriptarticle/post_page.php” method=”post” enctype=”multipart/form-data”>   By default, form data is encoded to “application/x-www-form-urlencoded” so that…