Jump to content

Manage ASCII characters


ultimatehadow

Recommended Posts

hi guys i got a question!

i'm building a website on which i made a script to login using mail address and password in order to allow users to choose user names with strange characters but i have a problem about it cause when i insert a name like µltimãtê §haðøw in the db php inserts wrong chars and the same happens when i print those strings on the page....

 

my question is: in there a function which manages theese chars?

otherwise i can make a function on my own but i need a hint... i don't know where to star from ???

Link to comment
https://forums.phpfreaks.com/topic/165925-manage-ascii-characters/
Share on other sites

Your getting into the differences in character sets.  You'll have the most difficulty with this when it comes to MySQL.  My suggestion is to do an entity translation.

 

I would take the ASCII character from the user input and translate it into the HEX equivalent and then store that into the database as a VARCHAR. Then when you pull it out of the database, translate it into the ASCII equivalent.

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.