Wikipedia:Reference desk/Archives/Computing/2018 June 23

From Wikipedia, the free encyclopedia
Computing desk
< June 22 << May | June | Jul >> June 24 >
Welcome to the Wikipedia Computing Reference Desk Archives
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


June 23[edit]

How to post from a php page with this code[edit]

I want to post the selected contents or user entered content in the editable combo box to a php page The editable combo box page has this code I want to post from form after completing code either user entered content only or selected content only but with no success.I request the learned experts here to get me out of this mess <script src="jquery.js"></script> <script src="http://192.168.28.51/req/jquery-editable-select-master/dist/jquery-editable-select.min.js"></script> <link href="http://192.168.28.51/req/jquery-editable-select-master/dist/jquery-editable-select.min.css" rel="stylesheet"> <script>$('#editable-select').editableSelect();</script>

<select id="editable-select"> <option value="HP LaserJet1606dn">HP LaserJet1606dn</option> <option value="HP MFP Pro1005">HP MFP Pro1005</option> <option value="HP LaserJet P1007">HP LaserJet P1007</option> <option value="HP LaserJet P1008">HP LaserJet P1008</option> <option value="HP OfficeJet1020">HP OfficeJet1020</option> <option value="No requisition">No requisition</option> </select> <script>$('#editable-select').editableSelect();</script>45.120.17.7 (talk) 11:29, 23 June 2018 (UTC)[reply]

Where's the form tag? To submit form data, you need a form tag. Otherwise, you have to do it all through scripting, which is a pain. 75.136.149.172 (talk) 03:24, 24 June 2018 (UTC)[reply]