if ($money > $taxIncludedPrice) {
echo 'You can buy this item';
} elseif ($money == $taxIncludedPrice) {
echo 'You can buy this item, but you will not have any money left';
} else {
echo 'You cannot buy this item';
}
My Statistical tools and consulting service
Statsitics, Research Methods, SAS, R, HLM, Rasch model
if ($money > $taxIncludedPrice) {
echo 'You can buy this item';
} elseif ($money == $taxIncludedPrice) {
echo 'You can buy this item, but you will not have any money left';
} else {
echo 'You cannot buy this item';
}