Stripe Payment Gateway Integration in PHP

The Stripe payment gateway provides an easy and powerful way to accept credit cards directly on the web application. Stripe make it easy to integrate the checkout system and collect payment on the website. The Stripe API is a powerful solution to integrate the checkout system into the web application to provide a smooth payment experience.

If you want to accept credit card payments on your website, Stripe will be the best option for that. You can easily integrate the checkout system into your PHP-based website, which allows the user to make payments through credit or debit cards without leaving your website. This tutorial will show you how to integrate the Stripe payment gateway in PHP for collecting payments online using credit or debit cards.

In the example script, we will implement the following functionality to demonstrate the Stripe payment gateway integration process.

Stripe Test API Keys Data

Before making your Stripe payment gateway integration live, you need to test it thoroughly. To test the credit card payment process with Stripe, the test API Keys are required. You can generate and get the TEST DATA in your Stripe account.

stripe-developer-test-data-publishable-secret-api-keys-codexworld

Collect the Publishable key and Secret key to later use in the script.

Before getting started to implement Stripe payment gateway in PHP, take a look at the file structure.

stripe_integration_php/ ├── config.php ├── dbConnect.php ├── index.php ├── payment_init.php ├── payment-status.php ├── stripe-php/ ├── js/ | └── checkout.js └── css/ └── style.css

Create Database Table

To store the transaction details, a table is required to be created in the database. The following SQL creates a transactions table in the MySQL database.

CREATE TABLE `transactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customer_name` varchar(50) DEFAULT NULL, `customer_email` varchar(50) DEFAULT NULL, `item_name` varchar(255) DEFAULT NULL, `item_price` float(10,2) DEFAULT NULL, `item_price_currency` varchar(10) DEFAULT NULL, `paid_amount` float(10,2) NOT NULL, `paid_amount_currency` varchar(10) NOT NULL, `txn_id` varchar(50) NOT NULL, `payment_status` varchar(25) NOT NULL, `created` datetime DEFAULT NULL, `modified` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

Stripe API and Database Configuration (config.php)

In the config.php file, constant variables of the Stripe API and database settings are defined.

Product Information:

Stripe API Constants:

Database Constants:

 
// Product Details
// Minimum amount is $0.50 US
$itemName = "Demo Product";
$itemPrice = 25;
$currency = "USD";

/* Stripe API configuration
* Remember to switch to your live publishable and secret key in production!
* See your keys here: https://dashboard.stripe.com/account/apikeys
*/
define('STRIPE_PUBLISHABLE_KEY', 'Insert_Stripe_API_Publishable_Key');
define('STRIPE_SECRET_KEY', 'Insert_Stripe_API_Secret_Key');

// Database configuration
define('DB_HOST', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', 'root');
define('DB_NAME', 'codexworld_db');

?>

Note that: Stripe API Secret key and Publishable key will be found in the API Keys Data section of your Stripe account.

Database Connection (dbConnect.php)

The dbConnect.php file helps to connect the database using PHP and MySQL.

// Connect with the database 
$db = new mysqli(DB_HOST, DB_USERNAME, DB_PASSWORD, DB_NAME);

// Display error if failed to connect
if ($db->connect_errno) <
printf("Connect failed: %s\n", $db->connect_error);
exit();
>

Stripe Checkout Form (index.php)

At first, include the configuration file.

// Include configuration file 
require_once 'config.php';
?>

Stripe JS Library:
Include the Stripe.js v3 library that helps securely sending the sensitive information to Stripe directly from the browser.

 script src="https://js.stripe.com/v3/"> script>

Checkout JS Script:
Include the custom script ( checkout.js ) to process checkout with Stripe API using JavaScript.

script src="js/checkout.js" STRIPE_PUBLISHABLE_KEY=" echo STRIPE_PUBLISHABLE_KEY; ?>" defer> script>

HTML Payment Form:
Initially, the product details are displayed with an HTML form to collect the user information (name and email) and card details (Card Number, Expiration Date, and CVC No.).

div class="panel"> div class="panel-heading"> h3 class="panel-title">Charge  echo '$'.$itemPrice; ?> with Stripe h3> p>b>Item Name: b>  echo $itemName; ?> p> p>b>Price: b>  echo '$'.$itemPrice.' '.$currency; ?> p> div> div class="panel-body"> div id="paymentResponse" class="hidden"> div> form id="paymentFrm" class="hidden"> div class="form-group"> label>NAME label> input type="text" id="name" class="field" placeholder="Enter name" required="" autofocus=""> div> div class="form-group"> label>EMAIL label> input type="email" id="email" class="field" placeholder="Enter email" required=""> div> div id="paymentElement"> div> button id="submitBtn" class="btn btn-success"> div class="spinner hidden" id="spinner"> div> span id="buttonText">Pay Now span> button> form> div id="frmProcess" class="hidden"> span class="ring"> span> Processing. div> div id="payReinit" class="hidden"> button class="btn btn-primary" onClick="window.location.href=window.location.href.split('?')[0]">i class="rload"> i>Re-initiate Payment button> div> div> div>

Checkout Script (checkout.js)

The following JavaScript code is used to initialize Stripe Elements and create PaymentElement with Stripe JS v3 library.