Subversion Repositories cheapmusic

Rev

Rev 10 | Rev 12 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 11
Line 133... Line 133...
133
        <?php
133
        <?php
134
            echo $_SESSION["filterWarnings"];
134
            echo $_SESSION["filterWarnings"];
135
        ?>
135
        ?>
136
        <form method="post" action="/index.php"
136
        <form method="post" action="/index.php"
137
            onsubmit="document.getElementById('search').innerHTML = '&lt;span class=\'spinner-border spinner-border-sm\'&gt;&lt;/span&gt; Searching, please wait...';">
137
            onsubmit="document.getElementById('search').innerHTML = '&lt;span class=\'spinner-border spinner-border-sm\'&gt;&lt;/span&gt; Searching, please wait...';">
138
            <input type="hidden" name="sessionTab" value="<?php echo $handler->getSessionTab(); ?>">
138
            <input id="sessionTab" type="hidden" name="sessionTab" value="<?php echo $handler->getSessionTab(); ?>">
139
        	<div class="input-group mb-3">
139
        	<div class="input-group mb-3">
140
            	<div class="input-group-prepend">
140
            	<div class="input-group-prepend">
141
                    <div class="d-none d-sm-block">
141
                    <div class="d-none d-sm-block">
142
                        <button class="btn input-group-text mx-1 rounded" type="button" data-toggle="modal" data-target="#searchInfoModal"><i class="fas fa-info-circle" style="font-size:25px"></i></button>
142
                        <button class="btn input-group-text mx-1 rounded" type="button" data-toggle="modal" data-target="#searchInfoModal"><i class="fas fa-info-circle" style="font-size:25px"></i></button>
143
                	</div>
143
                	</div>
Line 174... Line 174...
174
include_once('php/discogs.php');
174
include_once('php/discogs.php');
175
findDiscogsMaster($_SESSION["searchTerm"]);
175
findDiscogsMaster($_SESSION["searchTerm"]);
176
echo $_SESSION["discogs"];
176
echo $_SESSION["discogs"];
177
 
177
 
178
        if ($_SESSION["lowestPrice"]["All"] > 0.00 || !empty($_SESSION["searchTerm"])) {
178
        if ($_SESSION["lowestPrice"]["All"] > 0.00 || !empty($_SESSION["searchTerm"])) {
-
 
179
	        echo "<div id=\"productTable\">";
179
            echo printTableHeader();
180
            echo printTableHeader();
180
            echo buildTable();
181
            echo buildTable();
-
 
182
            echo "</div>";
181
        }
183
        }
182
        echo printSearchFilterModal();
184
        echo printSearchFilterModal();
183
        echo printSearchInfoModal();
185
        echo printSearchInfoModal();
184
    ?>
186
    ?>
185
 
187
 
186
    <footer class="container-fluid text-center">
188
    <footer class="container-fluid text-center">
187
        <p>Disclaimer: As an Associate we earn from qualifying purchases.</p>
189
        <p>Disclaimer: As an Associate we earn from qualifying purchases.</p>
188
        <p>Copyright &#169; <?php echo date("Y"); ?> FindCheapMusic.com. All rights reserved.</p>
190
        <p>Copyright &#169; <?php echo date("Y"); ?> FindCheapMusic.com. All rights reserved.</p>
189
    </footer>
191
    </footer>
190
 
192
 
191
    <script src="/js/dr.min.js" integrity="sha384-EtIwzuKAwnONywwaqKOYs3eD2KXe6HrxJ1Ako6N6cR5LHyrLhKsaxBuSbkJhhtEH" crossorigin="anonymous"></script>
193
    <script src="/js/dr.min.js" integrity="sha384-dxd4PdwnWxgxHO8a50F7CizVhl9/GaPSQHyOtYUzpZYBvTgiWLRLj6rQYc/w1vNF" crossorigin="anonymous"></script>
192
</body>
194
</body>
193
</html>
195
</html>