skip to Main Content

Is the array key defined for the HTML-PHP form using Post?

HTML: <form action="submit.php" method="POST" > <div class="file-input"> <input type="file" class="attestat" id="attestat" name="attestat" accept="application/pdf, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/*" multiple="multiple"> <span class="file-name">Выберите файл</span> </div> </form> and PHP: <?php $servername = "localhost"; $username = "root"; $password = "Youshit21"; $dbname = "medacc"; $conn = new…

VIEW QUESTION
Back To Top
Search