Your cart
  • IMG
    {{cart_item.name}}
    {{cart_item.variation_attribute_name}}: {{cart_item.variation_attribute_label}}
    {{cart_item.item_unit}}: {{ setCurrency(cart_item.price)}}
    {{ setCurrency(cart_item.price*cart_item.quantity)}}
    Invalid quantity more than stock
Total :
{{setCurrency(cart.sub_total)}}

There is no item in the cart. If you want to buy, Please click here.

if স্টেটমেন্ট

পিএইচপি(PHP)টিউটোরিয়াল

Created by : mamun_1
tutorial
Programming, Software and application
805
2020-10-03 12:17:22

  if স্টেটমেন্ট

  কেবল if এর মধ্যে অবস্থিত কন্ডিশন true হলে if এর কোড ব্লক এক্সিকিউট হয়। অন্যথায়, প্রোগ্রাম এর কন্ট্রো if এর কোড ব্লক থেকে বের হয়ে যায়

Example:

<?php

$nema=date(“H”);

If ($name < “20” ){

Echo ”how are you”;

}

?>