echo $form->data['Itemid'];
Or if you mean inside the foreach loop (because you’ve got other stuff to do there), then use this:
foreach($form->data as $key => $value) {
if( $key === 'Itemid' )
echo $form->data['Itemid'];
}
2
solved display single value of php array