gotornot;10967081 wrote:Thanks i have sorted that bit!
I have now got top strip out all numbers what command could i get to do that.
I would suggest str_replace() as well, unless you're comfortable with regular expressions. str_replace() can take an array for the strings it is to replace, so just create an array with the numbers 0-9 (make sure to put quotes around them, otherwise they're just numbers) and use that array as one of the arguments.