I have array that I can display by code:
foreach($form->data as $key => $value){
echo 'Key is '.$key.' and Value is '.$value.'<br />';
}
And I get following display:
Key is language and Value is lv-LV
Key is Itemid and Value is 114
Key is option and Value is com_content
Key is pumpis_1 and Value is 1
Key is lietussargs and Value is 2
But I need to display only value of [Itemid]
which in this case is 114
How can I do it?
Thanks!
Raivis