All hail Regex!
In PHP: From this:
urlencode($row_rs_details['Title'],ENT_QUOTES, 'utf-8');
and several hundred more where the variable names are different, I need to remove the ,ENT_QUOTES, 'utf-8' and just have this:
urlencode($row_rs_details['Title']);
while leaving the many different $row_rs_names intact.
Sincere thanks for saving me at least six hours.