Hi!
I wonder if there is a way for me to translate hexadecimal "words" into string? The problem is that the string is crypted as hexadecimal and I have to translate to see what it says. Is there a PHP-method for this or does anybody has a suggestion of what to do?
//Magnuus
it depends on what method is used to "encrypt" the string. If it is just replacing each character with it's hexadecimal number in the ascii set, then you could do it with char() and hexdec()