-
Simple php math question
I’ve got a e-commerce plugin that returns the product price with ”
echo wpsc_the_product_price()” So I want to do some math to display a final price after mounting. This is what I have tried.<?php $price = wpsc_the_product_price();
$mount = 19.75;
echo $price + $mount;
?>As I am not fluent in php, this does not work. How do I call up that price into the math?