20 lines
1.1 KiB
PHP
20 lines
1.1 KiB
PHP
|
|
<?
|
||
|
|
$num = isset($row['num']) ? $row['num'] : '';
|
||
|
|
$vendor_code = isset($row['vendor_code']) ? $row['vendor_code'] : '';
|
||
|
|
$vendor_name = isset($row['vendor_name']) ? $row['vendor_name'] : '';
|
||
|
|
$representative_name = isset($row['representative_name']) ? $row['representative_name'] : '';
|
||
|
|
$address = isset($row['address']) ? $row['address'] : '';
|
||
|
|
$business_type = isset($row['business_type']) ? $row['business_type'] : '';
|
||
|
|
$item_type = isset($row['item_type']) ? $row['item_type'] : '';
|
||
|
|
$phone = isset($row['phone']) ? $row['phone'] : '';
|
||
|
|
$mobile = isset($row['mobile']) ? $row['mobile'] : '';
|
||
|
|
$email = isset($row['email']) ? $row['email'] : '';
|
||
|
|
$fax = isset($row['fax']) ? $row['fax'] : '';
|
||
|
|
$manager_name = isset($row['manager_name']) ? $row['manager_name'] : '';
|
||
|
|
$contact_info = isset($row['contact_info']) ? $row['contact_info'] : '';
|
||
|
|
$note = isset($row['note']) ? $row['note'] : '';
|
||
|
|
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : 0;
|
||
|
|
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
||
|
|
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
||
|
|
$item = isset($row['item']) ? $row['item'] : '';
|
||
|
|
?>
|