Yo te dare codigo:
PHP:
Código PHP:
Ver original<?php
// la variable $dats queda con el array que enviamos
?>
JavaScript
:
Código Javascript
:
Ver originaldats = JSON.stringify(ARRAY_A_ENVIAR);
var xmlHttp;
try
{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(oc)
}
if(!xmlHttp && typeof XMLHttpRequest != "undefined")
{
xmlHttp = new XMLHttpRequest();
}
var ajaxRequest = 'script.php?d=' + dats;
xmlHttp.open("GET", ajaxRequest, true);
xmlHttp.send(null);
Obviamente script.php es el nombre del archivo en php