Link to home
Start Free TrialLog in
Avatar of codelevel
codelevel

asked on

payment gateway plugin

i would like to have a payment plugin in my html page.
say for example, the final price of all the products is 1020$.
i would like to have a button that says make payment and that should drive to the payment system using plugin.
is it possible to do this with in html page?
please suggest with an example and steps to do.
<html>
<body>
Total : $ 1020
<input type="button" value="Make Payment">
</body>

</html>

Open in new window

Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

This is highly dependent on the payment gateway solution you have chosen. While they all follow similar patterns for passing values from page to PG - there are subtle differences that need to be taken into consideration for each implementation.

Can you provide more information about your setup - do you have a Payment Gateway provider - if so which one? Are you using a Content Management System (WordPress / Joomla / Drupal / Other)?

Have you looked at services like Shopify?

The more information you can provide the more we will be able to assist?
Avatar of codelevel
codelevel

ASKER

no cms. just plain html js site.
do you have a Payment Gateway provider - if so which one?
Are you asking how to go about this from the ground up?

Your first step (if you have not done it) is to select your payment gateway service provider.

You then need to follow their setup requirements in terms of what you need to do to create an account with them.

You will need to follow their setup procedures for how you want to interact with their gateway. You are usually presented with several options - the two most common are:

You use their form: They provide you with a link that you post your payment details to - they present the customer with a form for CC / Payment details - process the transaction and callback to your site with a success / failure response.

The second option is you create your own form and server side pass the transaction information to them - they send a status back. This option requires more in the way of setup as you will have to implement a secure form (over HTTPS) which in turn requires purchasing and configuring a digital certificate.

To be able to answer this question I recommend you give us as much information as you can - otherwise all we can do is provide general answers.
julian

thanks.
if i choose a provider and use their code, how secured it is?
if there is a hacking and problem in payment, will the service provider take the risk?
will their system take care of session time out,  for example the shopper forgot to sign out and left the site open in a public computer.
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thank you for all the details and your time.
You are welcome.