I have a decimal(15,2) field in my MySQL database named 'price'. I would like to do something like this with PHP:
<?
$price = $row->price;
if($price >= 75) { echo 'Free Delivery'; }
?>
Do I need to turn $price into an integer before doing this? If so, what's the best way to do this? Any help would be much appreciated!