hi everyone.
i would like to know if it is possible to create request with no space with MySQL ?
i test the security of my own website, and i've put an str_replace(" ", "", $POST['id']); All sql injection becomes :
id=-1 UNION SELECT pass...
afet strreplace : -1UNIONSELECTpass
i would have a hight livel securoty on my own website. they are other way to inject SQL query with this protection ?
PS : i 've already put an mysql_real_escape_string() on the query.