groups

name language licence
Display Recent Comments PHP BSD
Template Name PHP BSD
Dynamic Title Tags PHP BSD
slideshow PHP GPL 2
timthumb PHP GPL 2
Display Top Comments PHP BSD
Display Archives PHP BSD
Display Recently Updated Posts/Pages PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: GPL 2

timthumb

options: view full snippetsend to code collector
<?php

// TimThumb script created by Tim McDaniels and Darren Hoyt with tweaks by Ben Gillbanks
// http://code.google.com/p/timthumb/

// MIT License: http://www.opensource.org/licenses/mit-license.php

/* Parameters allowed: */

// w: width
// h: height
// zc: zoom crop (0 or 1)
// q: quality (default is 75 and max is 100)

// HTML example: <img src="/scripts/timthumb.php?src=/images/whatever.jpg&w=150&h=200&zc=1" alt="" />
	
(Continues...)