java - Text that contains the apostroph php -
i have serious problem. app retrieves text online database, problem if put text in database contains apostrophe in site displays correctly in application fails me while synchronizing database. enabled magic quote gpc nothing. how can fix?
first, disable magic_quote_gpc, deprecated/removed
secondly, @ mysqli_real_escape_string() when sending data database (which assumed 'synchronizing database' is).
Comments
Post a Comment