Getting Events

topic posted Fri, March 25, 2005 - 6:44 AM by  Diana
I'm trying to pull the data from
tribe.net/event/category/4000

into an online calendar to post at
alittleredhairedgirl.blogspot.com/

I did in PHP:
<?php
$pagecontents = file_get_contents("tribe.net/event/category/4000
$totallen = strlen($pagecontents);
$findme = '<table class="listings"';
$pos = strpos($pagecontents, $findme)-23;
$findme = '<div id="pageCount"';
$pos1 = strpos($pagecontents, $findme)-30;
$contents = substr($pagecontents, $pos, $pos1);
print $contents;
?>

Trying to figure out hom to automagical get that into RSScalendar.com
(I get this script back)
<script language="JavaScript" src="www.rsscalendar.com/rss/publish.asp

Or put it into iCal format and publish to icalshare.com
posted by:
Diana
Washington

Recent topics in "tribe.hacks"

Topic Author Replies Last Post
New Tribe Skins Diana 0 June 5, 2007
Mark all read Ashton 1 August 9, 2005
hiding albums with user stylesheets Tom 5 July 7, 2005
(main) image trick Eli 5 June 14, 2005