1
2
3
4
5
6
7
8
9
10
11
12
|
<?php //product selection $formid=$_REQUEST['formid']; require_once "inc/configure.php";
$custcode = $_REQUEST['custcode'];
if(empty($custcode)){ print'<option value="">MISSING CUSTOMER CODE</option>'; exit; } ?> <option value=""></option><?=inv_product_option($custcode, "", true, "CQA")?>
|