[ic] get-url

marc.brevoort interchange-users@icdevgroup.org
Wed Aug 28 11:48:01 2002


On Wednesday 28 August 2002 16:39, you wrote:
> Why in this mode is OK
>
> [get-url http://www.myurl.org]
>
> and in this mode NO
>
> [perl]
> $Tag -> get_url ("http://www.myurl.org");
> return $Tag
> [/perl]

Instead of the above, Try

[perl]
my $own_variable= $Tag -> get_url ("http://www.myurl.org");
return $own_variable;
[/perl]