How do I use the below to send to a php page the value of each of the checkboxes in mysql is either inserted into a new row or updates an exisiting column
<script language="javascript" type="text/javascript">// <![CDATA[
var $n = jQuery.noConflict(); //Jquery no conflict
$n("#btnsubmit").click(function() {
var allChkbox=$n('input[name=cats[]]');
jQuery.each(allChkbox, function(i, singlecheckbox) {
alert(singlecheckbox.value+" is "+ singlecheckbox.value);
});
});
// ]]></script>