Hey everyone, I'm fairly new to this, can adjust an existing script for the most part, but need help with something.
I want to be able to say, if MSRP is 0-$10, display same, if $10.01-$25.00 then .90, if $25.01-$50.00 .75, everything else is *.70.
Here's my code that I'm starting with:
$number= $row['MSRP'] * .79;
$formatted = number_format($number,2);
$content .= $formatted."\t";
This didn't work as I was trying to get it to round.? Can someone help?
Thanks soooo much.
Shane