please help this is really bugging me..
i'm using the following to remove spaces out of artists names - all works fine
$artists = str_replace (' ','', $artists);
BUT i now want to remove ' also and i can;t write
$artists = str_replace (''','', $artists);
how can this be done?
thank you gareth