Welcome
Headlines
Upcoming Meeting
load('https://meetings.vtools.ieee.org/meetings/rss/5/lafayette/'); $feed = array(); $itemCount=0; foreach ($rss->getElementsByTagName('item') as $node) { $item = array ( 'title' => $node->getElementsByTagName('title')->item(0)->nodeValue, 'desc' => $node->getElementsByTagName('description')->item(0)->nodeValue, 'link' => $node->getElementsByTagName('link')->item(0)->nodeValue, 'date' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue, ); array_push($feed, $item); $itemCount++; } $limit = 5; if($itemCount>=$limit) {$limit=$limit; } else { $limit = $itemCount; } for($x=0;$x<$limit;$x++) { $title = str_replace(' & ', ' & ', $feed[$x]['title']); $link = $feed[$x]['link']; $description = $feed[$x]['desc']; $date = date('l F d, Y', strtotime($feed[$x]['date'])); echo ''.$title.'
';
echo 'Posted on '.$date.'
There are no upcoming meetings posted right now. Check back later
'; } ?>