just add more elements to the array
like:
$keyword = new Keyword();
$keyword->text = 'sample phrase';
$keyword->matchType = 'EXACT';
$k2 = new Keyword();
$k2->text = 'other sample phrase';// ensure to not repeat keywords
$k2->matchType = 'EXACT';
$keyword_array = array($keyword, $k2);
Hello,
I'm new on Google Adwords API and i would like to get the targeted
monthly searches for keywords. I've managed to get this statistic with
this code (PHP with client library) :
(...)
$targetingIdeaService = $user->GetTargetingIdeaService('v200909');
// Create seed keyword.
$keyword =