HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<?php //The buyer's amount $buyer_amount = 50; //The item price $item_price = 70; if ($buyer_amount < $item_price) { echo "You do not have sufficient funds to purchase this item"; } ?>