我想根据某些用户存储的输入进行存档。那些输入然后输出到html表。我现在想要它可以选择编辑“Naslovoročila”的标题,我使用了contenteditable属性。我怎样才能使用php读出新值并在数据库中更新?我不能使用其他任何东西,因为老师只允许它的PHP。谢谢。 这是它的样子: Look of archive
这是我用来生成该表的原因:
while($fetch = mysqli_fetch_assoc($query)){
echo "<tr>
<td>".$fetch["vnosiID"].
"<td contenteditable>".$fetch["naslov"]."</td>".
"<td>".date('d.m.Y',strtotime($fetch["datum"]))."</td>".
"<td>".date('d.m.Y',strtotime($fetch["datumDogodka"]))."</td>".
"<td>".$fetch["ime"].'</td>'.
"<td contenteditable = 'false' border=0 id='test'><button id='gumb' name='".$fetch["vnosiID"]."'>POSODOBI</a></td>".
'</tr>';
}
//name='".$fetch["vnosiID"]." <--- i used this to name every button by number of ID so i could easier check which field to update ...
sql database “naslov”必须更新...... 如果你需要其他任何东西,请告诉我,我尝试了很少的教程,但没有一个适合我...