Re: [PHP] massive words

2002-06-02 Thread Michael Davey
Also, if you are really worried about placing too much load on the server, you could use JavaScript to check the form submission on the client side using the same technique... Mikey "Bogdan Stancescu" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > First, you

Re: [PHP] massive words

2002-06-01 Thread Justin French
Thanks! Justin on 02/06/02 1:18 PM, Bogdan Stancescu ([EMAIL PROTECTED]) wrote: > First, you don't need to explode and then implode - just use a different > var for the exploded array and use the original after the test. > > My suggestion for testing (but you really must test it and see if i

Re: [PHP] massive words

2002-06-01 Thread Bogdan Stancescu
First, you don't need to explode and then implode - just use a different var for the exploded array and use the original after the test. My suggestion for testing (but you really must test it and see if it's faster or slower than your method) is using wordwrap() with your max word length and t