hi,

Is it possible to return more than one var from $Response->Include() .. i
seem to not have a success :

my  $val1 = $Response->Include("myinclude.inc");
is OK, but this doesn't seem to work :

my  ($val1, $val2) = $Response->Include("myinclude.inc");

myinclude.inc
===========
<%
.....
my @ar = ('he', 'flaa');
return @ar;
%>

I get $val1 = 2 and $val2 = 1 ... i.e. this seems that it returns the size
of the array.. not the values..
yes I know I can use reference..just wondering.
=====
iVAN
[EMAIL PROTECTED]
=====

PS.And in this case :
my @ar = ('he', 'flaa', 'ff',  'dd' );
return @ar;

4 | 1


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

Reply via email to