<link rel="stylesheet" href="css/960_16_col.css">
        <link rel="stylesheet" href="css/pageStyle.css">
        <link rel="stylesheet" href="css/bootstrap.css">
        <title> Saved Job Applications </title>
    </head>
    <body>
        <?php 
try {
    ini_set("display_errors", 1);
    $connection = DB::getConnection(DB::host, DB::database, DB::user, DB::password);
    // gets the user id and searches for a matching id in the member table and displays the user's details
    $sTable = new seekerTable($connection);
    $jsTable = new jobSaveTable($connection);
    $jTable = new jobsTable($connection);
    $id = $_SESSION['id'];
    $jobSaves = $jsTable->showAllUnseen();
    $duplicate = false;
    $saveNum = $_GET['saveNum'];
    $count = $saveNum;
    $limit = $count + 10;
    $loopPass = 0;
    $previousSaveNum = $saveNum - 10;
    $jobs = $jTable->showAll();
    $seeker = $sTable->findById($id);
    $theme = $seeker->getTheme();
} catch (PODException $e) {
    $connection = null;
    exit("Connection Failed: " . $e->getMessage());
}
?>
        <div id="page-container<?php