We have received your donation and it is greatly appreciated.
Thank you very much your support.
Good Shepherd Baptist Church
Give Online
- PayPal Me
- Standard PayPal
MediaArchive
17 So then faith cometh by hearing, and hearing by the word of God. Romans 10:17
Media Archive
The MP3s below are not to be translated or distributed without prior written permission. Please contact the Good Shepherd Baptist Church for authorization beyond individual use.
Access Arnold Fruchtenbaum Footsteps of the Messiah 2018 Downloads
[php]
$fileList = file_get_contents(“http://www.goodshepherdbaptistgp.com/mpdirectory/mp3lists.txt”);
$arrfiles = explode(‘;’,$fileList);
$arrLinks[0] = “”;
$i = 0;
$maxToShow = 10;
foreach(array_reverse($arrfiles) as $value)
{
if (strlen(trim($value)) > 0)
{
$arrFilePair = explode(‘|’,$value);
if(strpos($arrFilePair[0],”FootSteps”))
continue;
//print_r($arrFilePair);
if (count($arrFilePair) > 2)
{
$slide = “”;
$slideFileGif = “/public_html/mpdirectory/” . str_replace(“mp3″,”gif”,trim($arrFilePair[0]));
$slideFilePNG = “/public_html/mpdirectory/” . str_replace(“mp3″,”png”,trim($arrFilePair[0]));
$slideFileJPG = “/public_html/mpdirectory/” . str_replace(“mp3″,”jpg”,trim($arrFilePair[0]));
/*switch(true)
{
case file_exists($slideFileGif) :
$slide = “http://www.goodshepherdbaptistgp.com/mpdirectory/” . str_replace(“mp3″,”gif”,trim($arrFilePair[0])) ;
break;
case file_exists($slideFilePNG) :*/
$slide = “http://www.goodshepherdbaptistgp.com/mpdirectory/” . str_replace(“mp3″,”png”,trim($arrFilePair[0])) ;
/* break;
case file_exists($slideFileJPG) :
$slide = “http://www.goodshepherdbaptistgp.com/mpdirectory/” . str_replace(“mp3″,”jpg”,trim($arrFilePair[0])) ;
break;
default:
$slide = “”;
break;
}*/
if (strlen($slide) > 0)
{
$slide = ‘<img src=”http://www.goodshepherdbaptistgp.com/mpdirectory/mp3.png” style=”width:50px;height:40px” alt=”Graphic Not Available” />’;
//print($slide);
}
$arrLinks[$i] = $arrFilePair[2] . “\r\n<br>” . ‘<a href=”http://www.goodshepherdbaptistgp.com/mpdirectory/’ . $arrFilePair[0] . ‘”>’ . $slide . ‘<br>’ . $arrFilePair[1] . ‘</a><br>’ . $arrFilePair[3] . ‘ ‘ . “\r\n<br>” . “\r\n<br>”;
}
else
$arrLinks[$i] = ‘<li>Sermon: ‘ . $arrFilePair[0] . ‘ on ‘. $arrFilePair[1] . ‘ is not available ‘ . ‘</li>’;
$i = $i + 1;
}
}
//$revArray = array_reverse($arrLinks,false);
foreach ($arrLinks as $sermonLinks)
{
print($sermonLinks);
print(‘<hr style=”width:225px;” align=”left”>’);
}
[/php]