Page 1 of 1

Posting Tracks from Soundcloud API

Posted: Fri Apr 15, 2011 6:31 pm
by invisibled
Hey there, i'm trying to list out all of my tracks with the soundcloud php wrapper. I have this so far

Code: Select all

// Include class
					require "lib/inc/Soundcloud.php";

					// Create Object
					$soundcloud = new Services_Soundcloud('id goes here', 'callback url');
					
					$soundcloud->get('tracks');	
so that works fine, the object returns tracks in array form, so where i am stuck is, how do i throw that in a loop and start outputting that data?

Any info will greatly help! :) thanks