当我单击提交时-没有反应!请帮助 ! PHP表单不起作用
我认为表单有误,请检查第一个操作和表单是否连通
Login.php
th {
top: 0;
position: sticky;
background: cornflowerblue;
color: #fff;
box-sizing: border-box;
}
tr th:nth-child(1) {
background: darkslateblue;
text-align: center;
text-transform: uppercase;
}
tr td:nth-child(1) {
background: lightskyblue;
color: white;
text-align: center;
}
Action.php
table-box {
width: 800px;
height: 400px;
overflow-y: scroll;
box-shadow: 0 10px 100px rgba(0,0,0,0.4);
background: #fff;
}
table {
width: 100%;
height: 800px;
}
table, th, td {
border: 1px solid salmon;
border-collapse: collapse;
padding: 10px;
text-align: left;
text-transform: uppercase;
}
/* The sticky element is here */
输出-没有结果
我的PHP版本-5.4.17
我的错误在哪里?