Jump to content

[SOLVED] MySQL Inserting "special characters"


newbreed65

Recommended Posts

Hey everyone

 

when inserting text fields into my database like a Name or News entry, i want to be able have certain characters like single quotes (", ') in the fields without breaking the MySQL Query, how would I do that?

 

Ive done abit of research and found things like mysql_real_escape_string, addslashes, stripcslashes and quotemeta but is there a simple function like htmlspecialchars which could do it on insert for me

You need to escape your data using mysql_real_escape_string providing get_magic_quotes_gpc is not returning true. If magic_quotes_gpc is however enabled (disable it if you can) you would also need to use stripslashes on your data prior to mysql_real_escape_string.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.