Subversion Repositories cheapmusic

Rev

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

Rev 62 Rev 64
Line 362... Line 362...
362
        findDiscogsMaster("***RANDOM***");
362
        findDiscogsMaster("***RANDOM***");
363
        echo $_SESSION["discogs"];
363
        echo $_SESSION["discogs"];
364
    } else {
364
    } else {
365
        if ($_SESSION["lowestPrice"]["All"] > 0.00 || !empty($_SESSION["searchTerm"])) {
365
        if ($_SESSION["lowestPrice"]["All"] > 0.00 || !empty($_SESSION["searchTerm"])) {
366
            echo $_SESSION["discogs"];
366
            echo $_SESSION["discogs"];
367
	        echo "<div id=\"productTable\" class=\"container\">";
367
	        echo "<div id=\"productTable\" class=\"container bg-info\">";
368
            echo printResultHeader();
368
            echo printResultHeader();
369
	    	echo printResult();
369
	    	echo printResult();
370
            echo "</div>";
370
            echo "</div>";
371
        } else if (!empty($_SESSION["discogs"])) {
371
        } else if (!empty($_SESSION["discogs"])) {
372
            echo $_SESSION["discogs"];
372
            echo $_SESSION["discogs"];
Line 402... Line 402...
402
                </div>
402
                </div>
403
            </div>
403
            </div>
404
        </div>
404
        </div>
405
    </div>
405
    </div>
406
 
406
 
407
    <footer class="container-fluid text-center bg-primary py-5 mt-5">
407
    <footer class="container-fluid text-center bg-primary py-5">
408
        <?php if (!empty($_SESSION["searchTerm"])) {
408
        <?php if (!empty($_SESSION["searchTerm"])) {
409
            echo "<p>Disclaimer: As an Associate we earn from qualifying purchases.</p>";
409
            echo "<p>Disclaimer: As an Associate we earn from qualifying purchases.</p>";
410
        }
410
        }
411
        ?>
411
        ?>
412
        <form method="post" action="/index.php">
412
        <form method="post" action="/index.php">
Line 423... Line 423...
423
            </ul>
423
            </ul>
424
        </form>
424
        </form>
425
        <p>Copyright &#169; <?php echo @date("Y"); ?> FindCheapMusic.com. All rights reserved.</p>
425
        <p>Copyright &#169; <?php echo @date("Y"); ?> FindCheapMusic.com. All rights reserved.</p>
426
    </footer>
426
    </footer>
427
 
427
 
428
    <script src="js/dr.min.js" integrity="sha384-1Jc5GQ0I0nyL+L6xYErrSs1Mewm51HEgmUBysBD0fP5gzcfur1HHH0wUECWp/NU/" crossorigin="anonymous"></script>
428
    <script src="js/dr.min.js" integrity="sha384-dzUXoixB0NZMraFbaWqEvdR3Ya6hVAL0VTsa82FXqOLUu07EZEwXLO1kSAV28m+X" crossorigin="anonymous"></script>
429
    <script>var quotes = [
429
    <script>var quotes = [
430
    <?php
430
    <?php
431
        if ($file = fopen("snippets/header.txt", "r")) {
431
        if ($file = fopen("snippets/header.txt", "r")) {
432
            while (($line = fgets($file)) !== false) {
432
            while (($line = fgets($file)) !== false) {
433
                echo "\"" . trim($line) . "\",";
433
                echo "\"" . trim($line) . "\",";