Codice PHP:

<html> 
<head> <title> Sezione alimentari </title>  
</head> 
<body align="center"> 



<form action="aaaa.php" method="POST"> 

<?php 


$nomefile
="alimenti.txt"

$fp=fopen($nomefile,"r"); 

$stringa=file($nomefile); 

  echo
"<table border='2' align='center' width='550' height='250'>"
for(
$i=0;$i<count($stringa);$i++) 


  
$stringa_div=explode("**",$stringa[$i]); 
    echo
"<tr align='center'>"
  for(
$j=0;$j<count($stringa_div);$j++) 
    { 
      echo
"<td> $stringa_div[$j] </td>"
    } 
     
    if(
$i>0
    echo
"<td><input type='checkbox' name='p$i' > </td>"
    echo
"</tr>"
}  

echo
"</table>"

fclose($fp); 

?> 


 <input type="submit" value="Calcola"> 
</form> 

</body> 

</html>

č possibile inviarlo ad un altro php? ditemi di si, vi prego...