Jump to content
  • 0

Сумма значений массива


banyman
 Share

Question

Здравствуйте!

Делаю корзину на сайте, возникла проблема с подсчетом итоговой суммы, не пойму как реализовать. Как сумировать в цикле значение одного массива?

Кусок кода такой:

rsQuery_1 - Id

rsQuery_3 - количество товаров

rsQuery_4 - сумма / этот массив и нужно суммировать на каждом прохождении цыкла

echo $count = count($_SESSION["rsQuery_1"]);

echo "<form name='cart' action='/billing/card/' method='POST'>\n";
echo "<table width='100%'>";
echo "<tr><th>ID</th><th>Наименование</th><th>Количество</th><th>Цена</th><th>Удалить</th></tr>\n";
for ( $i=0; $i < $count; $i++ )
{
if ($_SESSION["rsQuery_1"][$i])
{

mysql_select_db($database_Conn, $Conn);
$query_rsCard = "SELECT * FROM Shoping WHERE Shoping.Id = '".$_SESSION["rsQuery_1"][$i]."'";
$rsCard = mysql_query($query_rsCard, $Conn) or die(mysql_error());
$row_rsCard = mysql_fetch_assoc($rsCard);

echo "<input name=\"rsQuery_4\" type=\"hidden\" value=\"".$_SESSION["rsQuery_4"][$i]."\" />\n";
echo "<tr>";
echo "<td>".$_SESSION["rsQuery_1"][$i]."</td>\n";
echo "<td>".$row_rsCard['Titile']."</td>\n";
echo "<td><input size='5' type='text' value='".$_SESSION["rsQuery_3"][$i]."' name='count_".$_SESSION["rsQuery_1"][$i]."' /></td>\n";
echo "<td>".$_SESSION["rsQuery_4"][$i]."</td>\n"; // сумма
echo "<td><a href='/billing/card/prod.".$_SESSION["rsQuery_1"][$i]."'>X</a></td>\n";
echo "</tr>";
}
}
echo '<tr><td colspan="3">';
echo "<input type='submit' name='update' value='Обновить' />\n";
echo '</td><td colspan="2">Оформить заказ</td>';
echo "</table>\n";
echo "</form>\n";

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Не понимаю что тут наворочено, дам пару советов:

array_sum() - сумма значений массива.

foreach - цикл, который можно использовать для перебора элементов массива.

SUM() - функция для подсчёта суммы, если всё хранится в таблице MySQL.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy