Jump to content

[SOLVED] Adding numbers in array


Bricktop

Recommended Posts

Hi all,

 

I have a foreach loop which extracts a price from an array and outputs it every time a match is found.  The price is stored as $price.

 

What I would like to do is add the $price variable together on each loop and store the number in $total.

 

How would I achieve this please?

 

My code is as follows:

 

foreach($_POST['order_price'] as $value)
{
	$prices = "";
	foreach($domainprices as $tld=>$price) 
	{
		if(substr($value, -strlen($tld)) == $tld) 
		{
			$prices = $price;
			break;
		}
	} 

$content .='<div>';
$content .='<p><span>'.$value.'</span>';
$content .='<span>'.$price.'</span></p>';
$content .='</div>';
  	}

 

The prices are all stored as; 12.99, 9.99, 14.99, 15.99 etc etc

 

Many thanks!

Link to comment
https://forums.phpfreaks.com/topic/168929-solved-adding-numbers-in-array/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.