Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 PHP 代码来从 MySQL 数据库表中检索数据。显示此 HTML 表后,我想编辑某些字段,以便在数据库中更新它们。
请告诉我什么和怎么做。
谢谢。
让检索到的数据进入如下表单字段:
<input type='text' name='age' value='<?php echo $age; ?>'>
这样,表格就预先填写了列表数据。此外,在表单转到的页面上,将数据(通过 $_POST 到达)写回数据库。