且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

SQL - 将表单插入数据库

更新时间:2023-01-29 08:55:27

/ p>

For any one intrested I have solved the issue, It seemed like the submit button wasn't responding So i added a javascript onclick function to force submit the form.

<input class="btn btn-default" onclick="myFunction()" value="Submit">
<script>
function myFunction() {
    document.getElementById("form").submit();
}
</script>   

感谢您的所有答案。