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.

ফর্ম একশন(Form action)

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

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

ফর্ম এর মাধ্যমে তথ্য সংগ্রহের জন্য পিএইচপি সুপার গ্লোবাল ভ্যারিয়েবল $_GET এবং $_POST ব্যবহার করা হয়।

Example:

    <form action="guest_post.php" method="post">

           নামঃ < input type="text" name="name">

            <br>

           ই-মেইলঃ <input type="text" name="email">

            <br>

           মোবাইলঃ <input type="tel" name="mobile">

            <br>


           <input type="submit" value="সাবমিট">

       </form>