hello i want to insert ( transaction ID ) and its 36 length string i added the following:
$data = array
(
'payment_id' => $order_info['payment_id'],
'trnsction_id' => $tranID ,
'status' => $pp_response['order_status']
);
db_query('INSERT INTO ?:xxx ?e', $data);
orderid and payment id were inserted successfully every time i test it but taransaction id keep inserted as 0 ????
any one can help !