开发者

how to insert checkbox values especially image url to mysql using jsp

开发者 https://www.devze.com 2022-12-31 13:15 出处:网络
开发者_StackOverflowhow to insert checkbox values especially image url to mysql using jspGive all checkboxes the same name but a different value.
开发者_StackOverflow

how to insert checkbox values especially image url to mysql using jsp


Give all checkboxes the same name but a different value.

<input type="checkbox" name="checkbox" value="foo">
<input type="checkbox" name="checkbox" value="bar">
<input type="checkbox" name="checkbox" value="baz">

Then you can obtain them in the servlet using HttpServletRequest#getParameterValues().

String[] checked = request.getParameterValues("checkbox");


You have to connect to the database, either directly via JDBC or via an ORM like Hibernate.

Then you simply issue a query or create an persist an object which stores your data.

0

精彩评论

暂无评论...
验证码 换一张
取 消