Hello stack overflow people I have a problem with this Api of Giphy what happens is that I do not get the image that I'm pining but it does not give me any good error I hope you help me see my error
<?php
$url = file_get_contents('http://api.giphy.com/v1/gifs/search?q=cat&api_key=dc6zaTOxFJmzC&limit=7');
$json = json_decode($url);
$gif = @$json->data->images->original->url;
echo '<img src="'.$gif.'" style="width: 100%; position: relative;">';
?>