Skip to content

Instantly share code, notes, and snippets.

@John2496
Created June 23, 2010 18:33
Show Gist options
  • Save John2496/450333 to your computer and use it in GitHub Desktop.
Save John2496/450333 to your computer and use it in GitHub Desktop.
<? include 'twitter.php' ?>
<? $tweets = twitter::feed('john2496') ?>
<? foreach ($tweets as $tweet): ?>
<div>
<?=$tweet->text?><br />
<?=date('g:iA', strtotime($tweet->created_at))?> from <?=$tweet->source?><br />
</div>
<? endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment