Before
$f_serviceurlb =str_replace("+","",$f_serviceurla);
$f_serviceurlc =str_replace("%40","@",$f_serviceurlb);
$f_serviceurld =str_replace("%2526","&",$f_serviceurlc);
$str_explode=explode("%2C",$f_serviceurld);
$servicecc1 = $str_explode[0];
$servicecc2 = $str_explode[1];
$servicecc3 = $str_explode[2];
$servicecc4 = $str_explode[3];
$servicecc5 = $str_explode[4];
$f_hosturlb =str_replace("+","",$f_hosturla);
$f_hosturlc =str_replace("%40","@",$f_hosturlb);
$f_hosturld =str_replace("%2526","&",$f_hosturlc);
$str_explode=explode("%2C",$f_hosturld);
$hostcc1 = $str_explode[0];
$hostcc2 = $str_explode[1];
$hostcc3 = $str_explode[2];
$hostcc4 = $str_explode[3];
$hostcc5 = $str_explode[4];
After
$f_serviceurlb =str_replace("+","",$f_serviceurla);
$f_serviceurlc =str_replace("%40","@",$f_serviceurlb);
$f_serviceurld =str_replace("%2526","&",$f_serviceurlc);
$str_explode=explode(", ",$f_serviceurld);
$servicecc1 = $str_explode[0];
$servicecc2 = $str_explode[1];
$servicecc3 = $str_explode[2];
$servicecc4 = $str_explode[3];
$servicecc5 = $str_explode[4];
$f_hosturlb =str_replace("+","",$f_hosturla);
$f_hosturlc =str_replace("%40","@",$f_hosturlb);
$f_hosturld =str_replace("%2526","&",$f_hosturlc);
$str_explode=explode(", ",$f_hosturld);
$hostcc1 = $str_explode[0];
$hostcc2 = $str_explode[1];
$hostcc3 = $str_explode[2];
$hostcc4 = $str_explode[3];
$hostcc5 = $str_explode[4];
We just changed the $str_explode=explode part from “%2C” to “, “ to fix the issue.