In the course of recent years I’ve had the chance to finalize a couple of individual ventures. This permitted me to trial progressively with methods that I wouldn’t have ordinarily utilized on customer locales. Throughout this time I was assembling a blogging stage, I soon discovered that it was challenging to display the information and make it look fascinating to the client, this is where i uncovered web thumbnails to accomplish this.
There are an assortment of web thumbnail benefits out there however the best and most effortless to use far and away is shrinktheweb.com
Using the Shrinktheweb.com Pro Features
- Specific Page Captures – “inside pages”
- Full Length Captures
- Custom Sized Captures
- Refresh On-Demand – queued instantly
- Custom System Messages – private label with your own system message thumbnails
Native Capture Resolution
- Capture using browser resolution of 800×600 or 1024×768
- Widescreen Thumbnail Capture
- Capture using any browser resolution (i.e. 1440×900, 1024×750, etc)
Lets add thumbnails to an application
I’m going to run through the concept of adding web thumbnails to an analytics application. Lets say we have a concept and want to display our data like the image below taken from the popular link shortening service.
So we have our information in a database incorporating the URL or connection to our target site that we need the thumbnail for. In the code sample underneath you’ll see that I’m simply doing a basic database question in a while circle. You can see from my case that its exceptionally simple to add web thumbnails from shrinktheweb.com to your requisition and locales, and it enhances the intelligibility, stickiness, and maintenance rate of your clients.
This is the kind of query used to create the example in the image above.
<?php
// simple database query
$result = $connector->query(“SELECT url, title, clicks FROM analytics order by date ASC LIMIT 10”);
while($row = $connector->fetchArray($result)){
// store the variable from the database
$clicks = stripslashes($row[‘clicks’]);
$title = stripslashes($row[‘title’]);
$url = stripslashes($row[‘title’]);
?>
</div>
<?php
// end of while loop
}
?>
I don’t even know how I ended up here, but I thought this post was great. I don’t know who you are but definitely you’re going to a famous blogger if you aren’t already 😉
Cheers!