public static string MySqlEscape(this string usString){ if (usString == null) { return null; } // SQL Encoding for MySQL Recommended here: // http://au.php.net/manual/en/function.mysql-real-escape-string.php // it escapes \r, \n, \x00, \x1a, baskslash, single quotes, and double quotes return Regex.Replace(usString, @"[\r\n\x00\x1a\\'""]", @"\$0");}
Remember Me
a@href@title, b, blockquote@cite, em, i, strike, strong, sub, sup, u