IN the PHP File the Brand value is Showing but when I trying to get it through another page it return NULL.
Page1 PHP
<div class="col-md-6">
<div class="row vertical-divider-page3">
<div class="col-md-4">
<div class="page3-img">
<img src="<?php echo $value["Image"]; ?>" class="img-responsive" id="custompage">
</div>
</div>
<div class="col-md-8">
<div class="page4">
<a href="product.php?post=Reference&value=$value"> <h3 id="custompage"><?php echo $value["Brand"]; ?><span><br><?php echo $value["Reference"]; ?></span></h3></a>
</div>
</div>
</div>
</div>
Product Page