Re: [PHP] Read values from Text Area Box

2003-07-27 Thread John W. Holmes
KEN - 2mediaZone wrote: > I'm trying to find out how to get multiple values from text area box > . > > Values are like this. > > aaa\n > bbb\n > ccc\n > ddd\n > eee\n > > I need to take "\n" from each value and put all the values to array. Use explode()

Re: [PHP] Read values from Text Area Box

2003-07-26 Thread Tom Rogers
Hi, Sunday, July 27, 2003, 3:04:56 PM, you wrote: K2> Hi, there. K2> I'm trying to find out how to get multiple values from text area box K2> . K2> Values are like this. K2> aaa\n K2> bbb\n K2> ccc\n K2> ddd\n K2> eee\n K2> I need to take "\n" from each value and put all the values to array.

[PHP] Read values from Text Area Box

2003-07-26 Thread KEN - 2mediaZone
Hi, there. I'm trying to find out how to get multiple values from text area box . Values are like this. aaa\n bbb\n ccc\n ddd\n eee\n I need to take "\n" from each value and put all the values to array. Please advise me if anyone knows about