Senior Scene

Westborough’s Senior Center serves an active community. It is located off of East Main Street by the Rogers Road fields. The town has a Council on Aging that meets 9:30am on the second Monday of each month at the Senior Center. The community organization also publishes a free monthly newsletter, Senior Scene, that lists its many events and services. The Westborough Senior Scene Show is the Senior Center’s voice with activity schedules, Center news and much more.

senior_scene1
Wesborough Senior Center

senior_center


Executive Director: Alma DeManche
4 Rogers Road
Westborough, MA 01581
508-366-3000

SHOW TIMES:
Every Day at: 8:30 AM and Wednesday evenings at: 8:30 PM
 

Click on any show listed below for instant viewing online.

Now you can view Westborough TV shows (recorded after January 10, 2014) on any device including iPad, iPhone and Android. For older showes you will need windows media player.

Senior Scene:

[insert_php]

//Configure
$server = "71.248.188.158/";
date_default_timezone_set('America/New_York');
// End Configure

$client = new SoapClient("http://" . $server . "/CablecastWS/CablecastWS.asmx?WSDL"); // Creates New SOAP client using WSDL file

$searchDate = date("Y-m-d")."T12:00:00";

// Search for all shows that have an event date less than now that are available for VOD
$result = $client->AdvancedShowSearch(array(
'ChannelID' => 1, // This sets the script to search only the pub channel
'searchString' => 'Senior Scene', // This is Where you change what content you want!
'eventDate' => date("Y-m-d") . "T00:00:00",
'dateComparator' => '<', 'restrictToCategoryID' => 0,
'restrictToProducerID' => 0,
'restrictToProjectID' => 0,
'displayStreamingShowsOnly' => 1,
'searchOtherSites' => 0,));

if(!isset($result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo)) {
$vods = array();
} else {
$vods = is_array($result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo) ?
$result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo :
array($result->AdvancedShowSearchResult->SiteSearchResult->Shows->ShowInfo);
}

if(count($vods) == '0') {
//There is probably something wrong if this shows up.
echo "There are no Shows currently available for on demand viewing.";
} else {
// Prints out a table with time and show title with link to show detial page
echo "

\n";
echo "

\n";

foreach($vods as $vod) {
echo "

\n";
echo "

\n";
echo "

";
echo "

\n";
}

echo "

Show Title Link
" . $vod->Title . " Watch Now

";
}

[/insert_php]

     To search for other shows visit our search page.

One Response to "Senior Scene"

  1. Pingback: Senior Scene Jan 2016 – In Honor of Charlie Flood |

Leave a Reply

Your email address will not be published.