Hello,
I am trying to multiply the price by a number but the price is a variable field.
echo ‘’.$content[‘prodName’].’ on sale at ‘.$content[‘prodCurrency’].$content[‘prodPrice’].’ Delivered right to your door
Free delivery
’;
echo ’ ‘.$content[‘prodDescription’].$content[‘prodDescription’].’
’;
echo ‘Only ‘.$content[‘prodCurrency’].$content[‘prodPrice’].’
’;
It is the .$content[‘prodPrice’].’ That I need to multiply by a factor (i.e. .$content[‘prodPrice’].* 5) but this does not work, any help much appreciated.
Thanks.