This is the main link of the API for getresponse https://github.com/robertstaddon/GetResponse-PHP-Wrapper/blob/master/PHPwrapper/GetResponseAPI.class.php
if(isset($_POST['Generate']))
{
require_once dirname(__FILE__) . '/GetResponseAPI.class.php';
$api = new GetResponse('APIKEY HERE');
$campaigns = (array)$api->getCampaigns();
$campaignIDs = array_keys($campaigns);
$campaign = $api->getCampaignByID($campaignIDs[0]);
var_dump($campaigns, $campaign);
}
This is the HTML code which is on the same page with the PHP.
<form method="post" action="">
<select name="Campaign" id="Campaign">
<?php foreach ( $campaign as $campaignID => $value ) { ?>
<option value="<?php echo $campaignID;?>"><?php echo $value;?></option>
<?php } ?>
</select>
<input type="submit" value="Generate" name="Generate" id="Generate"/>
</form>
The error i'm getting at the top of the same page is the following : array(0) { } NULL
Try This Code: