Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi gerkmulder,

    Do not feel dumb 🙂

    Just use the dumped array (as you already have pasted it in your initial post) and echo like this for example:

    <?php foreach($tweets as $tweet){ ?>
    <ul>
    	<li><?php echo $tweet['text']; ?></li>
    	<li><?php echo $tweet['user']['screen_name']; ?></li>
    </ul>
    <?php } ?>

    Where $tweet[‘text’] is the actual text from the tweet, while $tweet[‘user’][‘screen_name’] holds the username 🙂

    Hope this helps !

Viewing 1 replies (of 1 total)