2つのwhileループを使用してデータベースから2つの配列を取得しています。
while($row2 = mysql_fetch_assoc($result2))
{
$surveyscnt[$row2['user_grp_id']]=$row2['COUNT( * )'];
}
while($row3 = mysql_fetch_assoc($result3))
{
$ndhcnt[$row3['group_id']]=$row3['headcount'];
}
foreachループ内で次のことを行う方法を誰かに教えてもらえますか
以下のforeachループを参照してください
foreach($surveyscnt as $node => $headcount){
if($ndhcnt[$node]!=$headcount){
$pIdsNself = getAllParentsNself(array(**NEED TO CALL group_id**));
updateRollups($pIdsNself,**NEED TO PUT THE DIFFERENCE of(COUNT*-headcount)** );
}
}
どんな種類の助けもありがたいです