Позвольте мне резюмировать, что вам нужно:
Клиентская часть с JavaScript
<script>
//If you have an array with 3 items with random value
var arrInt = [Math.random(),Math.random(),Math.random()];
//If you want to send it to file yourscript.php
//1. Using GET mothod
/*
$.get(
'yourscript.php',
{
number_array: arrInt
}
);
*/
//2. Using POST method:
$.post(
'yourscript.php',
{
number_array: arrInt
}
);
</script>
Серверная часть с PHP:
<?php
//$arrInt = $_GET['number_array'];//If using GET
$arrInt = $_POST['number_array'];//If using POST
print $arrInt[0];
print $arrInt[1];
print $arrInt[2];
?>