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/www/archive/5a_orig/sl_wed.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_wed.gif\">\n";
echo "<P>\n";
echo "<table border=0 cellspacing=5 cellpadding=0>\n";

$datapath = "cgi-bin/songlists/wedding10.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 "</center>\n";
echo "<P>Don't worry!  Fifth Ace Entertainment has 1000's of great dance songs to choose from that range from the 50's to today!  And, if by the slight chance we don't have a particular song, we'll get it for you immediately!  You don't have to provide your own CD's to your own reception!  You've got enough to worry about, that's what we're here for!\n";


require("_footer.php");
?>