| More
Interviews |
<%
include_once ($WWW_ROOT."/inc/list_interviews.php");
$num_elements = count ($list_interview_array);
for ($idx = 0; $idx < $num_elements; ++$idx) {
$num_elements_property = count($list_interview_array[$idx][property]);
for ($subidx = 0; $subidx < $num_elements_property; $subidx++) {
if ( ($list_interview_array[$idx][property][$subidx] == "entertainment") || ($list_interview_array[$idx][property][0] == "all") ) {
echo "".$list_interview_array[$idx][header]." ";
echo $list_interview_array[$idx][datetext]."";
}
}
}
%>
|

|
<% $spotlight = fetch_spotlight( "entertainment", $used_array, "yes" ); %>
| AC
Calendar |
<% include_once ($WWW_ROOT."/inc/spotlights_calendar.php");
$today = date("Ymd");
$num_entries = count($spotlight_calendar_array);
for($counter = 0; $counter < $num_entries; $counter++) {
if ( ($today <= $spotlight_calendar_array[$counter][enddate] && $today >= $spotlight_calendar_array[$counter][startdate]) || $today <= $spotlight_calendar_array[$counter][startdate] ) {
for ($newcounter = 0; $newcounter < 4; $newcounter++) {
$entry = $counter + $newcounter;
%>
|
<% echo $spotlight_calendar_array[$entry][datetext]; %>
|
<% echo $spotlight_calendar_array[$entry][body]; %>
|
<% echo $spotlight_calendar_array[$entry][place]; %>
|
<%
}
break;
}
}
%>
| Hot Connections |
<%
include_once ($WWW_ROOT."/inc/spotlights_hotnews.php");
$num_elements = count ($spotlight_hotnews_array);
for ($idx = 0; $idx < $num_elements; ++$idx) {
$num_elements_property = count($spotlight_hotnews_array[$idx][property]);
for ($subidx = 0; $subidx < $num_elements_property; ++$subidx) {
if ( ($spotlight_hotnews_array[$idx][property][$subidx] == "entertainment") || ($spotlight_hotnews_array[$idx][property][0] == "all") ) {
echo "".$spotlight_hotnews_array[$idx][header]."
";
}
}
}
%>
|
|
|
<% include_once($WWW_ROOT."/inc/sidebar_right.php"); %>
|
|