I looked up the usort... can you please give me an idea where it would go in this coding?
function trimmer( $a )
{
$arr = array( '.wma','.mp3', '.', '[quote2_mark]', '[and]', '[quote_mark]','_');
$arr2 = array( '' ,'' , '.', '"' , '&', "'" , ' ');
return( ucwords( str_replace( $arr,$arr2 , $a ) ) );
}
or is this even the right part of the coding to alter in the code i already have?