top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the steps to provide online payment option in a PHP\Mysql based website?

+1 vote
362 views

Want to know how to provide online payment option in a PHP website for an online store so that people can buy the product online.

posted Mar 30, 2013 by Raj Verma

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Following are the popular method for providing the method of payment -
1. Cash on delivery.
2. Payment by Credit Card (visa or the master)
3. Netbanking payment options.

So in summary you can simply create the payment fields you need in your site and connect thesse fields to the gateway using their API or web services. gotoBilling.com can provide you the gateway and various development tools to make your site functional.

answer Mar 30, 2013 by Salil Agrawal
Similar Questions
0 votes

I have a client where their next auto-increment number just jumped from 2300 to ********** for reasons not understood. They want it set back.

Options such as dropping the primary key and rebuilding the index is NOT possible -- this is a relational table thing. So, is there a way (programmatically) to set the next number in an auto-increment?

Something like:

alter table abc auto_increment = 2301;

Any ideas of why this happened?

+2 votes

I have a date field on an html form that users may leave blank. If they do leave it blank I want to write the date 01/01/1901 into the mysql table. How can I accomplish this and where in my .php script file should I put the code?

...