Forum Moderators: buckworks
I need to connect to a 3rd party CC processing site. To connect to this site I need to pass a few 'credentials' along with the form so that my site-users are directed to the payment-form page. The only way I cud do this is pass these credential values as a hidden values along with the form.
Can anybody please tell me a way to pass these credential values using server side code so that my users cannot actually see these 'connection-credentials'. Btw the page I'm talkin abt uses a 2-step form with CGI as the server side scripting language to process the form input values.
Any help in resolving this issue would be greatly appreciated. Thanks in advance!
<Sorry, no personal URLs.
See Terms of Service [webmasterworld.com]>
[edited by: tedster at 5:41 am (utc) on Feb. 23, 2005]
I use a direct SSL POST from the server to their server passing the data securely, and process the result code it any. Most out-of-the-box ecommerce products will do this for you, you might want to consider using a more secure solution.
You open an SSL socket to the payment processor and mimic POSTing a secure form.
But why re-invent the wheel?
A bunch of solutions do it already and most of them are inexpensive or free even, you can probably download a PERL cart and just extract the payment gateway portion.