è vero hai ragione...ti faccio vedere il problema da un altra ottica allora..con le poche nozioni che conosco di javascript:
<html>
<head>
</head>
<body>
<script language="javascript">
i=1;
n=0;
r=1;
document.write("<table border='10'>");
document.write("<caption>LA TABELLA PITAGORICA");
document.write("<form name'x' method='post' action='servizi2.php'>");
do
{
document.write("<tr>");
while(n<=10)
{

r=i*n;
document.write("<td>"+r);
n++;
document.write("</td>");
}
document.write("<td>");

document.write("<input type='checkbox' name='id_array' value=''")
document.write("</td>");
document.write("</tr>");
i++;
n=0;
}
while(r<100);
document.write("<input type='submit' name='a' value='invio' /></form>");
document.write("</table>");
document.write("</caption>");
</script>
</body>
</html>
tramite javascript,come faccio a gestire le selezioni???vorrei almeno salvare le scelte in una variabile o in un array,almeno magari solo come indice numerico.