vlada Posted April 17, 2010 Share Posted April 17, 2010 first of all, hello everyone and sorry if someone asked this question already, i was trying to find answer, but i couldn't. it's abut special characters in my language (serbian). for example: user enter his name: Mića he submit it on page submit.php and that page store his name in db in db it is stored as Mića than, index.php retrieve his name and it is echoed as Mića of course, i want index.php to echo it originaly- Mića is there someone who can help me with this? thank you in advance Quote Link to comment https://forums.phpfreaks.com/topic/198841-html-special-characters/ Share on other sites More sharing options...
Daniel0 Posted April 17, 2010 Share Posted April 17, 2010 Well, that should be quite simple. Don't call htmlentities (or equivalent) before inserting into the database. Quote Link to comment https://forums.phpfreaks.com/topic/198841-html-special-characters/#findComment-1043679 Share on other sites More sharing options...
vlada Posted April 17, 2010 Author Share Posted April 17, 2010 thnx for reply maybe this is prob before i insert it in db: $name=trim(htmlspecialchars(strip_tags(addslashes($_POST['ime'])))); to be honest, i'm new in php and i don't really know what this do, i took it from some tutorial should i completely remove this and leave just $name=($_POST['ime']; or something like that? Quote Link to comment https://forums.phpfreaks.com/topic/198841-html-special-characters/#findComment-1043690 Share on other sites More sharing options...
vlada Posted April 17, 2010 Author Share Posted April 17, 2010 yea, i did it and it works. thank you very much. Quote Link to comment https://forums.phpfreaks.com/topic/198841-html-special-characters/#findComment-1043697 Share on other sites More sharing options...
Daniel0 Posted April 17, 2010 Share Posted April 17, 2010 If you're using MySQL, you would still want to pass it through mysql_real_escape_string to prevent SQL injections. Other databases have similar functions. Quote Link to comment https://forums.phpfreaks.com/topic/198841-html-special-characters/#findComment-1043698 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.