| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/coaching_sites/usbusinessfundingsolutions.com/member/ |
Upload File : |
<?php
if(false && ($_SESSION['Client']['type2']=='olc' || $_SESSION['Client']['type2']=='research')) { ?>
<h1 class="red">COACHING ARCHIVE</h1>
<div class="archive">
<?php
$webinars = get_webinars(20);
if(!empty($webinars) && !isset($webinars['error'])) {
foreach($webinars as $recording) {
/*
* $recording['url'] //full url path to the file
* $recording['fileName'] //complete file name including extension
* $recording['title'] //just the human readable part of the file
* $recording['date'] //date of recording
*/
?><a class='archives' href="<?=$recording['url'];?>" title="<?=$recording['title'].' - '.$recording['date'];?>" target="_blank" ><?=$recording['date'].' - '.$recording['title'];?></a><?
}
} else {
?><p>There was a problem listing the recorded webinars.</p><?
}
?>
</div>
<div class="readMore">
<a href="archives.php" class="readMore moreRed">Read More ></a>
</div>
<?php } ?>