単純なので、数字の 1 を 2 に、次に 3 に、というように 32 回置き換える必要があります。私は単純な PHP ループとすべてを作成する方法を知っていますが、これを「クリーン」のままにしておきたいので、皆さんが私を助けてくれます。
あなたが私に提供できる助けをありがとう。
<?php
$con = mysql_connect("localhost","user","pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("mbbcom1_rfhl", $con);
$sql="UPDATE `mbbcom1_rfhl`.`_statbu`
SET gp= gp + '$_POST[gp1]', g= g + '$_POST[g1]', a= a + '$_POST[a1]', shot= shot + '$_POST[s1]', pm= pm + '$_POST[pm1]', ppg= ppg + '$_POST[ppg1]', shg= shg + '$_POST[shg1]', bs= bs + '$_POST[blk1]', gwg= gwg + '$_POST[gwg1]', sog= sog + '$_POST[sog1]', soa= soa + '$_POST[soa1]', pim= pim + '$_POST[pim1]' WHERE `season` =9 AND `_statbu`.`player_id` = 1";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
mysql_close($con)
?>
明確にするために、同じことを行うには次のループが必要ですが、 '$_POST[gp2]', g= g + '$_POST[g2]' ....ect
もう一度、ありがとう