These are the 2 relevant lines from a function written in JavaScript:
var v_depttime = document.getElementById(\"EDDepttime\").value ; url = url+\"?select_bn
Use encodeURIComponent:
url = url + "?select_bno=" + encodeURIComponent(v_busno) + "&select_depttime=" + encodeURIComponent(v_depttime);
Use encodeURI or encodeURIComponent.