yes, i need it to make thumbnail image of stories (link_summary.tpl)
my code is:
PHP Code:
{php}
$url = '{$url_short}';
$apikey = '2254af0be8710bc1464116918f700ad0';
$userId = 6547;
$date = gmdate('Ymd');
$size = 'medium';
{/php}
<a class="previewlink" href="{$url}" target="_blank"><img src="http://thumb.net/easythumb.php?user={php} echo $userId; {/php}&url={php} echo urlencode($url); {/php}&hash={php} echo md5($date.$url.$apikey); {/php}&size={php} echo $size; {/php}" width="150" height="112" border="0" alt="SnapShot"/></a></div>
I have got show all variables, but not $url
how can i achieve it?
thanks!