Skip to content

Instantly share code, notes, and snippets.

@marchawkins
marchawkins / display_fourquare_on_website_with_php.php
Created February 7, 2013 17:55
Display your check-ins from foursquare on a map on your website with php.
<?php
// set default timezone (for date calcutations)
date_default_timezone_set('America/New_York');
// setup array to hold checkins
$checkins = array();
// enter your personal rss feed here (within the quotes); adjust the 'count=5' after the .rss to whatever number of checkins you want to display
$fsquareFeed = 'https://feeds.foursquare.com/history/YOURUNIQUEFOURSQUAREFEEDURL.rss?count=5';