I am trying to pass info through a link
echo "<a href= summary.php?GENRE=".$GENRE."?id=".$row['id'].">";
and call it on the Summary Page
$id=$_GET['id'];
$GENRE=$_GET['GENRE'];
$sql="SELECT * FROM Movies WHERE id='$id'";
but my summary.php page will not open properly