Name
mysql_escape_string()
Synopsis
unsigned int mysql_escape_string(char *destination,
const char *source,
unsigned int length)This function returns a string given as the second argument
with special characters escaped by adding backslashes in front of
them. However, this function is a security problem and has been
deprecated. Use the
mysql_real_escape_string() function instead;
it does this job properly and safely.