use shell curl to post whith a checkbox array

假如想象 提交于 2020-01-15 12:32:10

问题


The http code like this:

<input type="checkbox" value="1" name="checkbox[]">
<input type="checkbox" value="2" name="checkbox[]">
<input type="checkbox" value="3" name="checkbox[]">
<input type="checkbox" value="4" name="checkbox[]">
<input type="checkbox" value="5" name="checkbox[]">
<input type="checkbox" value="6" name="checkbox[]">

It will be checked some value more than one I see that, checkbox like this is for php and have to be serialized and I want to use curl on unix shell to do this,what can i do?

来源:https://stackoverflow.com/questions/17541062/use-shell-curl-to-post-whith-a-checkbox-array

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!