On Wed, 14 Dec 2011 20:42:10 -0300
Tessio Fechine wrote:
> Hello,
> I have a cgi application that has a two way communication with a ldap
> application via open2:
>
> |home.cgi| <===> |ldap.pl|
>
>
> I need to keep communicating with the same ldap.pl process as other cgi
> scripts are launch
timothy adigun wrote:
Hi Chris,
Please check added code to yours, in addition to what John wrote;
I am trying to split the first element of an array by white space then
continue reading the rest of the file.
Thus far I am having trouble figuring out how to split the first line.
I would like
Hello,
I have a cgi application that has a two way communication with a ldap
application via open2:
|home.cgi| <===> |ldap.pl|
I need to keep communicating with the same ldap.pl process as other cgi
scripts are launched:
|home.cgi| xxx |ldap.pl| <===> |admin.cgi|
I don't know how
Hi Chris,
Please check added code to yours, in addition to what John wrote;
I am trying to split the first element of an array by white space then
continue reading the rest of the file.
Thus far I am having trouble figuring out how to split the first line.
I would like the first line to be spli
The array @Cylinders you constructed has two elements, one stores $1 and
the other stores $2. That's why you get "an array with 2 lines". The two
lines correspond to the two elements of the array.
Maybe you should further split $1 and $2. Or, try to transpose the array
you currently get. Provi