|
<?php
|
|
/**
|
|
* Single Product Quantity Inputs
|
|
*/
|
|
|
|
global $input_name, $input_value;
|
|
?>
|
|
<div class="quantity"><input name="<?php echo $input_name; ?>" value="<?php echo $input_value; ?>" size="4" title="Qty" class="input-text qty text" maxlength="12" /></div>
|