jak używać metody get w sesji?

oto mój kod. faktycznie wyświetlam niektóre dane z mysql na stronie i tworzenie dynamicznego link.i chce rozpocząć sesję z session_start () na samym początku kodu przed rozpoczęciem dowolnego kodu. Chcę zapisać wartość linku, który ma być wyświetlany na innej stronie.

page1.php

 <a style="color:#F00; font-family:Arial, Helvetica, sans-serif; margin-left:33px; font-weight:bold">      
      No. of registered students:
 </a>
<table border='1' align="center" style="font-size:14px" width="95%" cellspacing="3" class="db_table">
<tr class="db_table_tr" >

<th class="db_table_th" name="submit">USN</th>
</tr>
<?php
include('includes/login_connection.php');

    $query = "select p.usn, p.name from personal_details p, course_codes c where p.usn = c.usn order by p.usn";

    $run = mysql_query($query) or die($query."<br/><br/>".mysql_error()); 
    $num = mysql_numrows($run);         
    echo $num;
    while($row = mysql_fetch_assoc($run)){

        echo "<tr>";
        echo "<td><a href = page2.php" . ">" . $row['usn'] . "</a>" . "</td>";
        echo "<td>" . $row['name'] . " </td>";

        if(isset($_GET['submit'])){
            $_SESSION['session_usn'] = $_GET['usn'];
        }
    }
    echo "</tr>";
    mysql_close($bd);

?>
</table>

page2.php

<?php
session_start();
if(isset($_SESSION['session_usn']))
    {
        $_POST['usn'] = $_SESSION['session_usn'];
        echo $_POST['usn'];
    }


?>

questionAnswers(1)

yourAnswerToTheQuestion