Re: ipc question

2011-12-14 Thread Shlomi Fish
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

Re: split function

2011-12-14 Thread John W. Krahn
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

ipc question

2011-12-14 Thread Tessio Fechine
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

Re: split function

2011-12-14 Thread timothy adigun
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

Re: 2 dimensions array

2011-12-14 Thread De-Jian Zhao
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