在带有复选框的列表中显示 SQL 数据
我不知道如何去做这件事,但我有一个 SQL 数据库,我可以在其中查询信息。我想在网页上的列表中显示查询结果,并在开头带有一个复选框,以便用户可以选择他们想要修改的信息记录。
我的数据库有超过 20 列,但我只想显示与我搜索的查询相关的大约 5 列数据。目前我已将数据重新填充到文本字段中。但我想更进一步,将数据显示在水平列表中。
基本上是这样的:
客户在数据库中搜索订单。假设数据库中有 2 个不同的订单符合搜索条件。我想说,这 2 个订单的数据库中的 5 列数据显示在页面上,每个订单旁边都有一个复选框,这样客户就可以选择他们想要修改的订单。
我不确定用于在带有复选框的列表中显示 sql 数据的代码。谢谢!
I am not sure how to go about doing this, but I have an SQL Database where I query for info. I would like to display the query results in a list on a webpage with a check-box at the beginning so the user can select which they record of info they would like to modify.
My database has over 20+ columns but I only want to display probably 5 columns of data pertaining to the query that I searched for. Currently I have the data being repopulated in text fields. But I would like to go a step further and get the data displayed in a horizontal list.
Basically something like this:
Client searches for an order in the database. Say there are 2 different orders matching the search criteria in the DB. I would like say 5 columns of data from the DB for those 2 orders displayed on a page with a check-box next to each, so the client can then select which order they want to modify.
I am not sure of the code used to display the sql data in a list with a check-box. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的代码演示了如何:
注意您可能需要修改的一些参数,例如数据库名称、用户名、密码,主键的名称(“id”)。
The code below demonstrates how to:
Beware of some parameters that you may need to modify, e.g. database name, username, password, name of the primary key ("id").
基本上是这样的:
如果你的意思是像
以及一系列所需的
。
Basically, something like this:
If you mean list as in
<select>
, then the basic logic works the same, just adjust the html to output a<select>
and a series of<option>
's as desired.