Hi
>
> Sorry about the delay to your original message - I  have been travelling
for most of today

no problem...

>and am trying to narrow down the problem before wasting your time any
further.
>

.. that's even better!

> I get the following line in my messages file at startup:
> httpd-perl: [12291]SES:  Embperl Session management enabled (>= 1.50)
>
> PerlModule HTML::Embperl
> is the final line in my conf file.
>

That is ok.

> I think the inconsistency was another problem with tied hashes. Can you
tell me the best way to push data on to an array in %udat from an element in
another array in %udat.
>
> I am currently using the following code:
>
> $rtscos = $udat{rtscos};
> push (@{ $udat{rtsco} }, $rtscos->[$fdat{rtscoselem}]);
>

The above code should work as far as $udat{rtsco} is already initialized, if
not initialize it before using it by putting assigning an empty array, if
it's empty:

$udat{rtsco} ||= [] ;

$rtscos = $udat{rtscos};
push (@{ $udat{rtsco} }, $rtscos->[$fdat{rtscoselem}]);


Gerald



-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------



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

Reply via email to