View Single Post
  #4 (permalink)  
Old 05-16-2008, 12:00 PM
isgaso isgaso is offline
Casual Pligger
 
Join Date: Oct 2007
Posts: 30
Thanks: 1
Thanked 0 Times in 0 Posts
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}

                    <
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!
Reply With Quote