Skip to content

Instantly share code, notes, and snippets.

@buchin
Created September 23, 2015 01:50
Show Gist options
  • Save buchin/10d24979c9abcff11a4e to your computer and use it in GitHub Desktop.
Save buchin/10d24979c9abcff11a4e to your computer and use it in GitHub Desktop.
<?php
$images = json_decode(file_get_contents('http://tools.dojo.cc/api/trends/p19/images'), true);
foreach($images as $image){
echo '<a href="http://domain.com/tag/'. str_replace(' ', '-', $image['title']) . '">' . <img src="{{ $image['mediaurl'] }}" alt="{{ $image['title'] }}" width="150" onError="this.onerror=null;this.src='http://cars.usermanual.site/wp-content/uploads/2015/09/loading.gif';"> . '</a>, ';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment