How to open a form from another site with fields pre-populated with PHP / HTML / JAVASCRIPT?

-1

Hello. I am improving the customer ticket update on my site and I need help. There is currently a refresh button on the ADM page that users use, where it redirects users to the ticket upgrade page of the bank site they chose to use (an external site). Arriving on this page, there is a form with some fields asking for information from the user's expired ticket. Everything works perfectly, the only problem is the work that users spend filling out this form. I want to implement some method that will automatically populate this data for users, but I can not find anything to help me with it.

    
asked by anonymous 26.06.2018 / 22:15

1 answer

0

Depends heavily on the bank. I do not know if this is documented somewhere, but for example, in Banco do Brasil you can pass the parameters by GET:

link

Already shows the page with the values filled in this case. You will need to do this for all the banks that your system supports. Your client will not have work but in compensation you will suffer a little rs. You may need to contact each bank to know how to proceed, or do as I did this test, I entered the page to update billet, saw the source of the form and the trial and error work.

    
26.06.2018 / 23:40