Re: [PHP] splitting up contents of a test box

2001-02-18 Thread David Robley
On Sat, 17 Feb 2001 09:31, James, Yz wrote: > If each of the scrolling lines is separated by something regular, like > a carriage return, or a line break, tab (etc), you could use explode(); > and have the values returned as an array. > > James. > > > I have a form that contains a scrolling text b

Re: [PHP] splitting up contents of a test box

2001-02-16 Thread James, Yz
If each of the scrolling lines is separated by something regular, like a carriage return, or a line break, tab (etc), you could use explode(); and have the values returned as an array. James. > I have a form that contains a scrolling text box. When I display the > contents of the text box, say

[PHP] splitting up contents of a test box

2001-02-16 Thread Don
Hi, I have a form that contains a scrolling text box. When I display the contents of the text box, say in variable $form[mytextbox], it displays all on one line (or wraps at end of line). As the ending character of each line will vary, does anyone know of away to split the lines up so that I ca