Skip to content

yeargin/php-stripe-donations-form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

screenshot

PHP Donations Form

A donations form to run on your own site. It works great on mobile handsets as well because it is powered by the Bootstrap responsive framework. Requires an active Stripe account for use.

Who Should Use It

This project is ideal for non-profits and political campaigns that need on-site donations. Note that it any page that processes financial data should be served over SSL (https://).

Quick Start

  1. From the root directory of the downloaded or cloned repository, run composer install to get the necessary library. If you are not familiar with Composer, start here.
  2. Copy config/app-config.php-dist to app-config.php and complete with your Stripe API keys
  3. Update the Google Analytics code in index.php to properly track for your site (or remove it entirely)
  4. Replace assets/img/logo.png with something more meaningful
  5. Test everything! (no money is processed in test mode)
  6. Switch your Stripe API keys to the production set
  7. Switch your Stripe account to Live mode
  8. Test everything! (small dollar amounts, as these are actually processed)

Customizing

You can override the default styles in assets/css/donations-form.css. You can do most changes to the layout of the objects without needing to update the JavaScript as long as the form field IDs do not change.

How It Works

The form on the landing page interacts with the Stripe JavaScript API to obtain a token for the provided credit card. The token is then used on the backend (along with additional form fields) to create a payment in Stripe.

Questions or issues?

Simply file an issue on our GitHub project.