Here are two codes one works fine while other doesn't can anyone explain me what is wrong with second code.
$Id = $row['id'];
<a href="page2.php?Id=<?php echo $row['id'] ?>">Product></a>
The code above works fine. But the code below doesn't. On page two I am using get method.
<a href="page2.php?Id=$Id">Product></a>