hi again!
i explain you:
the problem i have is i canīt get to show the variable-->
PHP Code:
$orl = '{$url_short}';
for example, if I put:
PHP Code:
{php}
$orl = 'http://www.yahoo.es';
$apikey = '7414af0be8710bc1464116918f700ad0';
$userId = 1245;
$date = gmdate('Ymd');
$size = 'medium';
{/php}
<a class="previewlink" href="{$url}" target="_blank"><img src="http://webthumb.bluga.net/easythumb.php?user={php} echo $userId; {/php}&url={php} echo urlencode($orl); {/php}&hash={php} echo md5($date.$orl.$apikey); {/php}&size={php} echo $size; {/php}" width="150" height="112" border="0" alt="SnapShot"/></a></div>
the variable $orl = 'http://www.yahoo.es'; is showed and let me make thumbnail of "yahoo.es". Then, i need to get variable $orl is {$url_short}, to make a thumbnail of each web/blog posted
do you know how i can do it?
thanks!