HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/public_html/archive/5a_orig/sl_bar.php
<?php
error_reporting(0);
if(phpversion() >= "4.2.0") {
extract($HTTP_POST_VARS);
extract($HTTP_GET_VARS); 
}

require("_header.php");

echo "<center>\n";
echo "<img src=\"images/sl_bar.gif\">\n";
echo "<P>\n";
echo "<table border=0 cellspacing=5 cellpadding=0>\n";

$datapath = "cgi-bin/songlists/barscene10.php";
$list = file($datapath);
$list_length = count($list);

for ($i=0; $i < $list_length; $i++) {
    $song = explode(":", $list[$i]);
    $data1 = stripslashes(trim($song[0]));
    $data2 = stripslashes(trim($song[1]));
    echo "<tr><td class=\"text\" valign=\"top\"><font color=#CC0000><b>" . ($list_length - $i) . "</b></td><td class=\"text\"><b>" . $data1 . "</b>";
    if (strlen($data2) > 0) {
    	echo "<br><span class=\"footer\">" . $data2 . "</span></td></tr>\n";
    } else {
    	echo "</td></tr>\n";
    }
}

echo "</table>\n";
echo "<P>Comments?  Suggestions?  Got your own top ten?  Email me!  I'll post the best ones...\n";
echo "</center>\n";

require("_footer.php");
?>