Answers for "how to enable and disable button in php"

PHP
0

php disable buutton

<input type="button" value="Add to Cart" <?php if ($prod_qty == '0'){ ?> disabled <?php   } ?> onclick="addtocart(<?php echo $row["prod_id"]?>)" />
Posted by: Guest on January-10-2021

Code answers related to "how to enable and disable button in php"

Browse Popular Code Answers by Language