var httpRequest = new XMLHttpRequest();
httpRequest.onreadystatechange = action;
httpRequest.open('POST','/fetch_product_list.php','true');
httpRequest.send("var=5");
but in the fetch_product_list.php
, $_POST['var'] has nothing, How can I fix it?