javascript - How to post the values from ajax page to main page -
i having problem, working check boxes loading pop , replace html block ajax in pop if check box checked or unchecked need update query need solution please me, thank you
<input type="checkbox" name="status[]" value="test1"/> <input type="checkbox" name="status[]" value="test2"/> <input type="checkbox" name="status[]" value="test3"/> ...
in server side array status
checked, can use array updation
suppose test1
, test3
checked
status
array
array ('test1', 'test3');
hope need
Comments
Post a Comment