12 lines
423 B
PHP
12 lines
423 B
PHP
<?php
|
|
// includes/api_keys.php
|
|
|
|
// IMPORTANT: Replace these placeholder keys with your actual Stripe API keys.
|
|
// You can find your keys in your Stripe dashboard: https://dashboard.stripe.com/apikeys
|
|
|
|
// Secret key (keep this secure on the server)
|
|
define('STRIPE_API_KEY', 'sk_test_YOUR_SECRET_KEY');
|
|
|
|
// Publishable key (safe to use in client-side code)
|
|
define('STRIPE_PUBLISHABLE_KEY', 'pk_test_YOUR_PUBLISHABLE_KEY');
|
|
?>
|