Hi i need the latest and safest Anti sql Please It is very Urgent Could somone please post it here Thanks
Printable View
Hi i need the latest and safest Anti sql Please It is very Urgent Could somone please post it here Thanks
"Latest" doesn't really qualify - escaping single quotes with another single quote is all you need to do to prevent SQLi in Microsoft SQL.
e.g.
Code:function sanitize( $data )
{
return( str_replace( "'", "''", $data ) );
}