value

  1. S

    mysql attack, prevention

    i made this following code, to hope it will protect from mysql injection tell me if u find a bug or something function remove_bad($value) { $value = addslashes($value); $value = strip_tags($value); echo ereg_replace("select", "nselectn", $value); echo ereg_replace("delete"...
Top Bottom