Dhruvin Moradiya
Dhruvin Moradiya

Reputation: 546

Pass Custom data in PayPal form

I want to pass many custom data in PayPal form and get into Success Page. How can I do this?

I use input field name custom, but it has limitation. Please give me proper solution for this.

<input type="hidden" name="custom" id="custom" value="<?php $data['formdata']; ?>" />

This is not work for my functionality.

Upvotes: 0

Views: 926

Answers (1)

Rushil K. Pachchigar
Rushil K. Pachchigar

Reputation: 1321

There is character sending limitation in paypal so one thing you can do when the paypal form is created at that time you can insert all records in temporary table and you only pass that record id in custom field and after payment will be success you can fetch that data from db and insert original data entry.

Upvotes: 1

Related Questions