I want to say 'show the campaign ID for 'campaign X'" But can't figure it out. Here's my code:
<?php $this_campaign = "Campaign X"; include_once("../scripts/settings.php"); // Set the path $path = "$DOCUMENT_ROOT/adwords-api/src"; set_include_path(get_include_path() . PATH_SEPARATOR . $path); // Login section require_once 'Google/Api/Ads/AdWords/Lib/AdWordsUser.php'; $user = new AdWordsUser(); // Choose the web service $campaignService = $user->GetCampaignService(); // Create selector object $selector = new Campaign(); // Add variables $selector->name = 'Netbooks'; // Get all campaigns $page = $campaignService->get($selector); // Display campaigns if (isset($page->entries)) { foreach ($page->entries as $campaign) { $campaign_name = $campaign->name; $campaign_id = $campaign->id; print("<b>$campaign_name</b> - $campaign_id<BR>"); } } ?> -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en