I am trying to prevent xss injection. So before I submit a form, a javascript function is called
function validatefield(id) {
var description = document.getElementById(id).value;
description = description.replace(/[\"\'][\s]*javascript:(.*)[\"\']/gi, "");
description = description.replace(/script(.*)/gi, "");
description = description.replace(/eval\((.*)\)/gi, "");
document.getElementById(id).value=description;
}
Mysql takmadan önce php aynı yapmanın bir yolu varsa ben wonderng ediyorum? onlar validatefield işlevinin etrafında olsun.
Teşekkürler