Incorrect string value: '\x92s Lim...' for column 'Warranty' at row 1'Are you attempting to include the backslash in the column value? Depending on the database you're working with (which was asked in the first comment but never answered), the backslash is probably the escape character. If you want to include it in the column value, you either need to change the escape character or escape it in the SQL statement. "\x" doesn't translate to any escapable character that I know of, so it is probably generating the error.
$FullDesc = preg_replace('#\\\x[a-z0-9]{2}#i', ' ', $FullDesc);
If is "\x" followed by two characters I need it gone. How do I correctly structure?That's a bit vague. A word space is considered a character. As is a period, et al.
$FullDesc = preg_replace('#\\x[a-z0-9]{2}#i', ' ', $FullDesc);
And what is the string that's causing the error?