Skip to content

Instantly share code, notes, and snippets.

View rdbinteractive's full-sized avatar

Robert Bardall rdbinteractive

View GitHub Profile
<?php
/**
* Plugin Name: Offload API Helper
* Plugin URI: iwritecode.blog
* Description: Offload plugins during API requests to reduce overhead.
* Author: Chris Kelley
* Author URI: iwritecode.blog
* Version: 1.0.0
*/
@toledox82
toledox82 / mailchimp.php
Last active July 21, 2023 18:06
PHP cURL function to add subscriber to MailChimp API 3.0
<?php
$data = [
'email' => $email,
'status' => 'subscribed',
'firstname' => $fname,
'lastname' => $lname
];
function syncMailchimp($data) {
$apiKey = 'XXX';