I have below code in phtml 1:
<?php $itemid = $item->getItemId() ?>
<a href="<?php echo $this->getUrl('history/customer/detail',
['item_id' =>$itemid]); ?>">Product Detail
</a>
How can I get variable $itemid with using function $_GET in phtml 2.
Can anyone show me?
Thanks.