Ok, I've moved away from that issue now, there's no point trying to do all of that as I released some albums have multiple artists.
Next issue though ....
PHP Code:
$myvar = str_replace(array('+','Ad','CD','BE'), array('%','\Ad','\CD',''), urlencode($row['album']));
I've found some combination of letters are actually ascii hex codes for other characters -- which means if it suddenly finds the characters "Ad" it inserts a dash. I've breifly combatted this with adding a \ before it .. which seems to work, but is there an easier way of doing this? So any letter isn't taken as ascii hex?
Cheers!
Jason