Welcome

All in one resource for most usable codes in programming in PHP, HTML, JS, CSS.

Monday, November 11, 2013

How to get thumbnails from youtube video

Get thumbnails from youtube video If you are developing youtube video integrated own video site with video thumbnails or do you want list some youtube videos with video thumbnails you can use this script with php and json Use the data on server-side using PHP <?php $json = json_decode(file_get_contents("http://gdata.youtube.com/feeds/api/videos/<youtube-video-id-here>?v=2&alt=jsonc")); echo '<img src="' . $json->data->thumbnail->sqDefault . '">'; ?> Replace <youtube-video-id-here>...