16 lines
802 B
PHP
16 lines
802 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
|
|
$stripeSecretKey = 'sk_test_YOUR_SECRET_KEY';
|
|
$stripePublishableKey = 'pk_test_YOUR_PUBLISHABLE_KEY';
|
|
|
|
|
|
// IMPORTANT: Replace these placeholder keys with your actual PayPal API keys.
|
|
// You can find your keys in your PayPal Developer dashboard: https://developer.paypal.com/developer/applications
|
|
$paypalClientId = 'AVDnoNaRDnJkqCHwm7jOMl9Vbrt1ZLxdauuTo0sqprqOBhkCnwWI72pQeMs1aNYQCk0iZKoncQvQCDwS';
|
|
$paypalSecret = 'EDE5TwL0lnTFvLwpr1QCIhK2LN5SYIWAlLc7OPrngfBP2XNX9L0InrQ7L4kXQlCa49RlGyflZVlAYBZF';
|
|
$paypalApiBase = 'https://api-m.sandbox.paypal.com'; // Use https://api-m.paypal.com for production
|
|
|
|
?>
|