I have a variable, $price, and a user entered amount. What script should I use to multiply $price by the entered amount to get a total price?
I have a rough idea, I'm just not sure how to implement it.
Cheers, Bailz.
$totalprice=$price*$_REQUEST['userEnteredAmount'];