in PHP, I am echoing html <textarea>, which value is one element of an array, why do...

alabama.blues

New member
...i get an empty line after? I have a for() cycle for an array, each line then explodes and an html textarea is being echoed like that:
<textarea name='pids".$i."' cols=50 rows=5>".$pins[2]."</textarea>
It all works perfectly fine, but each time I end up having an empty line in the textarea after the actual $pins[2] value. How do I prevent that?

Thanks
 
Back
Top