| 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
$title = 'Coaching Archives';
$body_id = 'form';
require_once('header.php');
?>
<script language="javascript" type="text/javascript" >
$(document).ready( function() {
$('.news-container .click').click( function() {
var letters = $(this).parents('.news-container').first().find('.g');
if(letters.find(':visible').length > 0) {
//hide them
letters.hide('fast');
$(this).find('.handle').text("[+]");
$(this).attr('title', 'Expand archive group');
} else {
//display them
letters.show('fast');
$(this).find('.handle').text("[-]");
$(this).attr('title', 'Collapse archive group');
}
return false;
});
});
</script>
<style>
.news-container { padding: 5px !important; }
.handle { float:right; font-weight:bold; }
.clear { clear:both; }
</style>
<div id="content" class="size">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="680" class="borderBot">
<h1>Coaching Archive</h1>
<p>Our highly-experienced funding coaches host group coaching sessions each week on Tuesday and Thursday nights. These sessions last about an hour each, and cover numerous funding topics.</p>
<p>Click on the links below, or expand the months to reveal all archived webinars available for your review.</p>
<?php
$webinars = get_webinars();
if(!empty($webinars) && !isset($webinars['error'])) {
$dateParts = explode('/',$webinars[0]['date']); //initialize year and month values
?>
<div class="news-container">
<a href="#" class="click" title="Collapse archive group">
<h2 class="title">WEBINARS - <?=$dateParts[0]; ?>
<span class="handle">[-]</span>
<div class="clear" style="padding:0px;margin:0px;"></div>
</h2>
</a>
<?php
$hideFiles = false;
foreach($webinars as $recording) {
if($recording['date'] <= '2012/01/01') { continue; }
/*
* $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
*/
$nextDateParts = explode('/',$recording['date']);
//end of this year, start of next year
if($dateParts[0] != $nextDateParts[0]) {
$hideFiles = true;
$dateParts = $nextDateParts;
?>
</div>
<div class="news-container">
<a href="javascript:void(0);" class="click" title="Expand archive group">
<h2 class="title">WEBINARS - <?=$dateParts[0]; ?>
<span class="handle">[+]</span>
<div class="clear" style="padding:0px;margin:0px;"></div>
</h2>
</a>
<?
}
?><div class="g" style="<?=($hideFiles) ? 'display:none;' : '';?>padding:0px;"><a class='archives' href="<?=$recording['url'];?>" title="<?=$recording['title'].' - '.$recording['date'];?>" target="_blank" ><?=$recording['date'].' - '.$recording['title'];?></a></div><?
}
?></div><?php
} else {
?><p>There was a problem listing the recorded webinars.</p><?
}
?>
</td>
<td width="275" rowspan="3" class="columnData">
<? include($_SERVER['DOCUMENT_ROOT'].'/sidebar_quotes.php'); ?>
<? include($_SERVER['DOCUMENT_ROOT'].'/sidebar_news.php'); ?>
</td>
</tr>
</table>
</div>
<?php
require_once('footer.php');
?>