--- Christopher E <[EMAIL PROTECTED]> wrote: > I have this table, I upload data to it, when I do it puts the white > space after some of the fields (data is from a fixed-width file). > > I would like to strip the white space from the start and end of all > fields either at the point when I move the data from one table to > another
The trim() function in PHP will remove leading and trailing white space. There is a similar function in MySQL. James
