72個の値の配列を新しいシートに移動することに成功しました:print_r
ただし、「警告: mysql_fetch_array(): 提供された引数は有効な MySQL 結果リソースではありません .../admin/emailall.php の 14 行目です。
数値を入力するとクエリが有効になります
<?php
include "inc.php";
//print_r ($_POST);
$Pnum=implode(',',$_POST);
$querymail=mysql_query("select sp.email_address as email from stats_player sp
where sp.player_num IN $Pnum");
//have tried ($Pnum) '$Pnum' (".'$Pnum'.") and I think a few other cominations
echo "<table>";
while($row=mysql_fetch_array($querymail))
{
echo "<tr><td>".$row['email']."</td></tr>";
}
echo"</table>";
?>
テーブルは一時的なものであり、単純なチェックです