Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created September 15, 2015 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xto3na/d311349c89360b79a2b4 to your computer and use it in GitHub Desktop.
Save xto3na/d311349c89360b79a2b4 to your computer and use it in GitHub Desktop.
PHP - if else in html
<?php if ($product['quantity'] > 0) { ?>
<p class="product-exist">В наличии</p>
<?php } else { ?>
<p class="product-not-exist">Нет в наличии</p>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment