Hi!
>
> No
> It doesn't work
> I have written:
>
> <a href="reguser.htm?[+ \%fdat +]">to register</a>
>
> And i have in HTML:
> <a href="reguser.htm?HASH(0x810c6b8)">to register</a>
>

This looks like you are using an older Embperl version. Either upgrade
Embperl or write it as an array ref (older Embperl versions only supports
arrayref and _not_ hashrefs)

<a href="reguser.htm?[+ [ %fdat ] +]">to register</a>

This will convert the %fdat hash, to an array and pass it's reference to
Embperl, which works with all version of Embperl

Gerald




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to