Hi All,
I want to use the id field as Paypal invoice number. This auto increment id is generated when the for data is saved in the database. However, after saving to the db it will not be in the from data array. So if i try {data:id} it will be empty.
The debug looks like this:
So how can I use the id in Paypal redirect ?
I want to use the id field as Paypal invoice number. This auto increment id is generated when the for data is saved in the database. However, after saving to the db it will not be in the from data array. So if i try {data:id} it will be empty.
The debug looks like this:
Array ( [save_data11] => Array ( [data] => Array ( [created] => 2019-07-07 14:55:58 [payment_gateway] => 0 [id] =>And further down:
[var] => Array ( [created] => 2019-07-07 14:55:58 [payment_gateway] => 0 [id] => 1236
So how can I use the id in Paypal redirect ?
{var:save_data11.id}
Hi healyhatman,
I would have another question following on from here. How can I do the same in php format ?
$this->data['id'] obviously does not work.
Cheers, Bob
I would have another question following on from here. How can I do the same in php format ?
$this->data['id'] obviously does not work.
Cheers, Bob
$this->get("save_data11.id")
data for field data. get for action data.
data for field data. get for action data.
This topic is locked and no more replies can be posted.